Skip to content

Commit

Permalink
fix: also push symbol packages
Browse files Browse the repository at this point in the history
  • Loading branch information
asser-dk committed Jul 11, 2024
1 parent a142926 commit 252bd76
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ jobs:
-p:PackageVersion=0.1.${{ github.run_number }}-alpha
- name: Push to nuget.org
run: |
dotnet nuget push ./artifacts/* \
dotnet nuget push ./artifacts/*.nupkg \
--source "https://api.nuget.org/v3/index.json" \
--api-key ${{ secrets.NUGET_TOKEN }}
--api-key ${{ secrets.NUGET_TOKEN }}
- name: Push symbols to nuget.org
run: |
dotnet nuget push ./artifacts/*.snupkg \
--source "https://www.nuget.org/api/v2/symbolpackage" \
--api-key ${{ secrets.NUGET_TOKEN }}

0 comments on commit 252bd76

Please sign in to comment.