Skip to content

Commit

Permalink
Fix nuget publish CI (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuromukira committed Oct 11, 2022
1 parent e251a41 commit 18ed91a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/nuget-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ jobs:
# Pack
- name: Pack
run: dotnet pack code/Universe/UniverseQuery.csproj -c Release
run:
dotnet pack code/Universe/UniverseQuery.csproj -c Release

# Publish
- name: Publish
run: dotnet nuget push *.nupkg --api-key ${{secrets.NUGET_KEY}} --source "https://api.nuget.org/v3/index.json" --skip-duplicate
run: dotnet nuget push /home/runner/work/universe/universe/code/Universe/bin/Release/UniverseQuery.*.nupkg --api-key ${{secrets.NUGET_KEY}} --source "https://api.nuget.org/v3/index.json" --skip-duplicate

0 comments on commit 18ed91a

Please sign in to comment.