Skip to content

Commit

Permalink
Fix Conflicting Path and Add Symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
Byrdman32 committed Jan 8, 2025
1 parent 42912ca commit 3e2a7c9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,16 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
ls ./output/RoveComm.**.nupkg
dotnet nuget push "./output/RoveComm.**.nupkg" \
dotnet nuget push "./RoveComm.**.nupkg" \
--source "https://nuget.pkg.github.com/MissouriMRDT/index.json" \
--api-key $GITHUB_TOKEN \
--no-symbols
--api-key $GITHUB_TOKEN
working-directory: ./output

- name: Publish to NuGet.org
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: |
dotnet nuget push "./output/*.nupkg" \
dotnet nuget push "./RoveComm.**.nupkg" \
--source "https://api.nuget.org/v3/index.json" \
--api-key $NUGET_API_KEY
working-directory: ./output

0 comments on commit 3e2a7c9

Please sign in to comment.