Skip to content

Commit

Permalink
Adjust nuget push syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
James A Sutherland committed Jan 29, 2024
1 parent 93ff38c commit afb3000
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,7 @@ jobs:
overwrite: true
- name: Push Nuget
if: contains(github.ref,'refs/tags/')
run: dotnet nuget push dist/*[0-9].nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_KEY }} --skip-duplicate
run: |
cd dist
dotnet nuget push *[0-9].nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_KEY }} --skip-duplicate

0 comments on commit afb3000

Please sign in to comment.