Skip to content

Commit

Permalink
fix: at some point I will get this nuget api key stuff right again :D
Browse files Browse the repository at this point in the history
  • Loading branch information
asser-dk committed Jul 12, 2024
1 parent 08033b1 commit b5ed32c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ jobs:
- name: Push implementation package
run: |
dotnet nuget push ./artifacts/*.nupkg \
--source "https://api.nuget.org/v3/index.json"/
--source "https://api.nuget.org/v3/index.json"/ \
--api-key ${{ secrets.NUGET_TOKEN }}
- name: Push symbols package
run: |
dotnet nuget push ./artifacts/*.snupkg \
--source "https://www.nuget.org/api/v2/symbolpackage" /
--source "https://www.nuget.org/api/v2/symbolpackage" \
--api-key ${{ secrets.NUGET_TOKEN }}
6 changes: 4 additions & 2 deletions .github/workflows/release-published.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ jobs:
- name: Push implementation package
run: |
dotnet nuget push ./artifacts/*.nupkg \
--source "https://api.nuget.org/v3/index.json"
--source "https://api.nuget.org/v3/index.json" \
--api-key ${{ secrets.NUGET_TOKEN }}
- name: Push symbols package
run: |
dotnet nuget push ./artifacts/*.snupkg \
--source "https://www.nuget.org/api/v2/symbolpackage"
--source "https://www.nuget.org/api/v2/symbolpackage" \
--api-key ${{ secrets.NUGET_TOKEN }}

0 comments on commit b5ed32c

Please sign in to comment.