We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56db82a commit fff5ecbCopy full SHA for fff5ecb
1 file changed
.github/workflows/build.yml
@@ -138,5 +138,8 @@ jobs:
138
139
- name: Publish to NuGet
140
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
141
- working-directory: ${{ github.workspace }}
142
- run: dotnet nuget push "artifacts/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
+ shell: pwsh
+ run: |
143
+ Get-ChildItem "${{ github.workspace }}\artifacts\*.nupkg" | ForEach-Object {
144
+ dotnet nuget push $_.FullName --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
145
+ }
0 commit comments