We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70b4ad commit 55f30e9Copy full SHA for 55f30e9
.github/workflows/interactive.yaml
@@ -99,7 +99,7 @@ jobs:
99
100
stage-2:
101
needs: stage-1
102
- if: needs.stage-1.result == 'success' || ${{ inputs.CONTINUE_ON_ERROR }}
+ if: needs.stage-1.result == 'success' || inputs.CONTINUE_ON_ERROR
103
uses: ./.github/workflows/build.yaml
104
with:
105
DEB_DISTRO: ${{ inputs.DEB_DISTRO }}
@@ -125,7 +125,7 @@ jobs:
125
126
stage-3:
127
needs: stage-2
128
- if: needs.stage-2.result == 'success' || ${{ inputs.CONTINUE_ON_ERROR }}
+ if: needs.stage-2.result == 'success' || inputs.CONTINUE_ON_ERROR
129
130
131
0 commit comments