Skip to content

Commit

Permalink
fix(ci): fix bug in expression evaluation in the github release step
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkleiven committed Jan 6, 2025
1 parent 3f4ab58 commit 21bdfae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Github Release
uses: softprops/action-gh-release@v2.2.0
if: ${{ steps.create_release.outputs.new_release_published }} == 'true'
if: ${{ steps.create_release.outputs.new_release_published == 'true' }}
with:
tag_name: ${{ steps.create_release.outputs.new_release_git_tag }}
body: ${{ steps.create_release.outputs.new_release_notes }}
Expand Down

0 comments on commit 21bdfae

Please sign in to comment.