Skip to content

Commit

Permalink
Fix release workflow nuget push
Browse files Browse the repository at this point in the history
  • Loading branch information
ikkentim committed Mar 11, 2022
1 parent ad06932 commit 8fcfa93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
run: dotnet pack SampSharp.sln --configuration Release --no-build --output bin

- name: Push
run: dotnet nuget push bin/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --skip-duplicate
run: dotnet nuget push bin/*.nupkg --source="https://api.nuget.org/v3/index.json" --api-key ${{secrets.NUGET_API_KEY}} --skip-duplicate

0 comments on commit 8fcfa93

Please sign in to comment.