Skip to content

Commit fe32ffc

Browse files
committed
fix: make sure step conditions are encased in expression tags
1 parent 6e28944 commit fe32ffc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/nightly.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535
fi
3636
3737
- name: Checkout code
38-
if: !steps.check_manual_run.outputs.needs_build
38+
if: ${{ !steps.check_manual_run.outputs.needs_build }}
3939
uses: actions/checkout@v3
4040

4141
- name: fetch tags
42-
if: !steps.check_manual_run.outputs.needs_build
42+
if: ${{ !steps.check_manual_run.outputs.needs_build }}
4343
run: git fetch --tags origin
4444

4545
- name: Check if tags point to the same commit or if the workflow was manually triggered
46-
if: !steps.check_manual_run.outputs.needs_build
46+
if: ${{ !steps.check_manual_run.outputs.needs_build }}
4747
id: check_tags
4848
run: |
4949
curr_sha=$(git rev-parse HEAD)

0 commit comments

Comments
 (0)