We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc8ee5 commit 87c6c89Copy full SHA for 87c6c89
.github/workflows/dotnet_release_push.yml
@@ -64,4 +64,10 @@ jobs:
64
65
# Step 10
66
- name: Push to NuGet
67
- run: dotnet nuget push ./nupkgs/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
+ shell: pwsh
68
+ run: |
69
+ $nupkgs = Get-ChildItem -Path ./nupkgs -Filter *.nupkg
70
+ foreach ($pkg in $nupkgs) {
71
+ dotnet nuget push $pkg.FullName --api-key $env:NUGET_API_KEY --source https://api.nuget.org/v3/index.json
72
+ }
73
+
0 commit comments