Skip to content

Commit

Permalink
Properly check prerelease status in Create Release step
Browse files Browse the repository at this point in the history
  • Loading branch information
pdecat committed Feb 10, 2022
1 parent a994506 commit dfa9a19
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 @@ -46,7 +46,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 dfa9a19

Please sign in to comment.