We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a439c7 commit ab9aa9bCopy full SHA for ab9aa9b
1 file changed
.github/workflows/nuget.yml
@@ -45,7 +45,9 @@ jobs:
45
env:
46
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
47
run: |
48
- dotnet nuget push ./artifacts/*.nupkg `
49
- --source https://api.nuget.org/v3/index.json `
50
- --api-key $env:NUGET_API_KEY `
51
- --skip-duplicate
+ Get-ChildItem ./artifacts/*.nupkg | ForEach-Object {
+ dotnet nuget push $_.FullName `
+ --source https://api.nuget.org/v3/index.json `
+ --api-key $env:NUGET_API_KEY `
52
+ --skip-duplicate
53
+ }
0 commit comments