Skip to content

Commit 55f30e9

Browse files
committed
CI: Fix syntax error in interactive.yaml
1 parent e70b4ad commit 55f30e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/interactive.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999

100100
stage-2:
101101
needs: stage-1
102-
if: needs.stage-1.result == 'success' || ${{ inputs.CONTINUE_ON_ERROR }}
102+
if: needs.stage-1.result == 'success' || inputs.CONTINUE_ON_ERROR
103103
uses: ./.github/workflows/build.yaml
104104
with:
105105
DEB_DISTRO: ${{ inputs.DEB_DISTRO }}
@@ -125,7 +125,7 @@ jobs:
125125

126126
stage-3:
127127
needs: stage-2
128-
if: needs.stage-2.result == 'success' || ${{ inputs.CONTINUE_ON_ERROR }}
128+
if: needs.stage-2.result == 'success' || inputs.CONTINUE_ON_ERROR
129129
uses: ./.github/workflows/build.yaml
130130
with:
131131
DEB_DISTRO: ${{ inputs.DEB_DISTRO }}

0 commit comments

Comments
 (0)