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 9, 2022
1 parent 68ed661 commit 0bc4cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
generateReleaseNotes: true
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 0bc4cfd

Please sign in to comment.