Skip to content

Commit

Permalink
fix(actions): correct publish workflow for NuGet package
Browse files Browse the repository at this point in the history
  • Loading branch information
engineering87 authored Nov 18, 2024
1 parent 23ed202 commit 99f7982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Publish to NuGet
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: dotnet nuget push ./output/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json
run: dotnet nuget push ./output/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate

- name: Create GitHub Release
id: create_release
Expand Down

0 comments on commit 99f7982

Please sign in to comment.