Skip to content

Commit

Permalink
fix release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAngryByrd committed Sep 7, 2023
1 parent 3c18636 commit 138d9db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: bin/*.nupkg
artifacts: **/*.nupkg
token: ${{ secrets.GITHUB_TOKEN }}
body: ${{ steps.changelog_reader.outputs.log_entry }}
prerelease: ${{ steps.changelog_reader.outputs.status == 'prereleased' }}

- name: Push packages
run: dotnet nuget push "bin/*.nupkg" -s "https://api.nuget.org/v3/index.json" -k ${{ secrets.NUGET_KEY }} --skip-duplicate
run: dotnet nuget push "**/*.nupkg" -s "https://api.nuget.org/v3/index.json" -k ${{ secrets.NUGET_KEY }} --skip-duplicate

0 comments on commit 138d9db

Please sign in to comment.