We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65b666a commit 80e958aCopy full SHA for 80e958a
1 file changed
.github/workflows/ci.yml
@@ -74,8 +74,10 @@ jobs:
74
name: NuGet packages
75
path: packages
76
- name: Push packages
77
- # The find,xargs chain below seems unnecessarily complex, but is required to work around https://github.com/NuGet/Home/issues/4393 :/
78
- run: find packages -name '*.nupkg' | xargs -i dotnet nuget push --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json {}
+ run: |
+ dotnet nuget push "*.nupkg"
79
+ --api-key ${{ secrets.NUGET_API_KEY }}
80
+ --source https://api.nuget.org/v3/index.json
81
- uses: dotnet/nbgv@v0.3.1
82
id: nbgv
83
- name: Create GitHub release
0 commit comments