Skip to content

Commit 3efcaf8

Browse files
committed
fix: yet more boolean comparison fixes for nightly build workflow
1 parent 1a1ae95 commit 3efcaf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nightly.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
outputs:
22-
needs_build: ${{ steps.check_manual_run.outputs.needs_build || steps.check_tags.outputs.needs_build }}
22+
needs_build: ${{ steps.check_manual_run.outputs.needs_build == 'true' || steps.check_tags.outputs.needs_build == 'true' }}
2323

2424
steps:
2525
- name: Check if workflow was manually triggered

0 commit comments

Comments
 (0)