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 179ca0d commit a10cd15Copy full SHA for a10cd15
.github/workflows/release.yml
@@ -35,5 +35,9 @@ jobs:
35
working-directory: src
36
37
- name: Push to NuGet
38
- run: dotnet nuget push ./nupkgs/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
+ run: |
39
+ foreach ($pkg in Get-ChildItem -Path ./nupkgs -Filter *.nupkg) {
40
+ dotnet nuget push $pkg.FullName --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
41
+ }
42
+ shell: pwsh
43
0 commit comments