We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e55e0bc commit 17809c8Copy full SHA for 17809c8
1 file changed
.github/workflows/ci.yml
@@ -73,8 +73,9 @@ jobs:
73
with:
74
name: NuGet packages
75
path: packages
76
- - name: Push packages
77
- run: dotnet nuget push packages/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
+ - name: Push packages
+ # 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 {}
79
- uses: dotnet/nbgv@v0.3.1
80
id: nbgv
81
- name: Create GitHub release
0 commit comments