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 3d144f4 commit eb369dbCopy full SHA for eb369db
.github/workflows/release.yml
@@ -81,8 +81,11 @@ jobs:
81
if: success() && !contains(github.ref_name, '-') # Skip pre-releases
82
env:
83
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
84
+ shell: pwsh
85
run: |
- dotnet nuget push "out/*.nupkg" `
86
- --api-key "$env:NUGET_API_KEY" `
87
- --source https://api.nuget.org/v3/index.json `
88
- --skip-duplicate
+ foreach ($file in Get-ChildItem -Path out -Filter *.nupkg) {
+ dotnet nuget push $file.FullName `
+ --api-key "$env:NUGET_API_KEY" `
89
+ --source https://api.nuget.org/v3/index.json `
90
+ --skip-duplicate
91
+ }
0 commit comments