Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wojt Janowski committed Apr 4, 2024
1 parent 34cea7a commit c8c7d0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
shell: bash

- name: Push
run: dotnet nuget push "./nupkg/*.nupkg" --api-key ${{ secrets.PUBLISH_TO_GITHUB }} --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --skip-duplicate
run: dotnet nuget push "./nupkg/*.nupkg" --api-key ${{ secrets.PUBLISH_TO_GITHUB }} --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --skip-duplicate --version ${{ env.PACKAGE_VERSION }}

- name: PushToNuget
run: dotnet nuget push "./nupkg/*.nupkg" -k ${{ secrets.PUBLISH_TO_NUGET }} -s https://api.nuget.org/v3/index.json
run: dotnet nuget push "./nupkg/*.nupkg" -k ${{ secrets.PUBLISH_TO_NUGET }} -s https://api.nuget.org/v3/index.json --version ${{ env.PACKAGE_VERSION }}

0 comments on commit c8c7d0f

Please sign in to comment.