Skip to content

Commit aacd035

Browse files
committed
ci: fix if statement, as any non true value means false
It seems that when a release is not created, it can return false, "" or no value ...
1 parent 96f644b commit aacd035

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
tag_name: ${{ steps.release.outputs.tag_name }}
2323

2424
no-release-created:
25-
if: ${{ needs.release-please.outputs.release_created == 'false' }}
25+
if: ${{ needs.release-please.outputs.release_created != 'true' }}
2626
runs-on: ubuntu-24.04
2727
steps:
2828
- name: No release created

0 commit comments

Comments
 (0)