Skip to content

Commit

Permalink
Fix prerelease parameter's value in release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nbro authored and abn committed Mar 24, 2024
1 parent 3f914ed commit 52cdb37
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 @@ -36,7 +36,7 @@ jobs:
artifacts: "dist/*"
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: steps.check-version.outputs.prerelease == 'true'
prerelease: ${{ steps.check-version.outputs.prerelease == 'true' }}

- name: Publish to PyPI
env:
Expand Down

0 comments on commit 52cdb37

Please sign in to comment.