We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceaebb8 commit 49abc05Copy full SHA for 49abc05
.github/workflows/build.yml
@@ -78,4 +78,7 @@ jobs:
78
79
- name: NuGet Push
80
if: startsWith(github.ref, 'refs/tags/') && matrix.dotnet.name == '.NET 8' && runner.os == 'Windows'
81
- run: dotnet nuget push ${{ env.NuGetDirectory }}/*.*nupkg --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
+ run: |
82
+ foreach ($file in (Get-ChildItem ${{ env.NuGetDirectory }} -Recurse -Include *.*nupkg)) {
83
+ dotnet nuget push $file --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
84
+ }
0 commit comments