Skip to content

Commit

Permalink
Update cicd-actions.yml
Browse files Browse the repository at this point in the history
fixing nuget feed push
  • Loading branch information
nullfx committed Jul 7, 2023
1 parent 1af8704 commit c8d9f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cicd-actions.yml
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: create nuget packages
run: dotnet pack -c Release -o ./out
- name: push nuget packages to github
run: dotnet nuget push "./out/NullFX.CRC.${{ vars.RELEASE_VERSION }}.nupkg" -s "https://nuget.pkg.github.com/nullfx/index.json" -k "${{ secrets.GITHUB_TOKEN }}"
run: dotnet nuget push "./out/NullFX.CRC.${{ vars.RELEASE_VERSION }}.nupkg" --skip-duplicate -s "https://nuget.pkg.github.com/nullfx/index.json" -k "${{ secrets.GITHUB_TOKEN }}"
- name: push nuget packages to nuget.org
run: dotnet nuget push "./out/NullFX.CRC.${{ vars.RELEASE_VERSION }}.nupkg" --skip-duplicate -s "https://api.nuget.org/v3/index.json" -k "${{ secrets.NUGET_ORG_API_KEY }}"
- name: Cache SonarCloud packages
Expand Down

0 comments on commit c8d9f4e

Please sign in to comment.