Skip to content

Commit

Permalink
Fix nuget push command
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSylence committed May 29, 2022
1 parent 9379499 commit 78b904d
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 @@ -32,7 +32,7 @@ jobs:
run: dotnet pack --configuration Release /p:PackageVersion=${{ steps.tagName.outputs.tag }} /p:Version=${{ steps.tagName.outputs.tag }} /p:FileVersion=${{ steps.tagName.outputs.tag }} /p:AssemblyVersion=${{ steps.tagName.outputs.tag }}

- name: Push nuget package
run: dotnet nuget push ./Changey/nupkg/*.nupkg --skip-duplicate -k ${{ secrets.NUGET_KEY }} --no-symbols true -s https://api.nuget.org/v3/index.json
run: dotnet nuget push ./Changey/nupkg/*.nupkg --skip-duplicate -k ${{ secrets.NUGET_KEY }} --no-symbols -s https://api.nuget.org/v3/index.json

- name: Extract changelog
run: dotnet Changey/bin/Release/net6.0/Changey.dll extract ${{ steps.tagName.outputs.tag }} -t Changey/nupkg/changelog.md
Expand Down

0 comments on commit 78b904d

Please sign in to comment.