We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22a43c6 commit ae1499eCopy full SHA for ae1499e
.github/workflows/deploy-demo-envs.yaml
@@ -79,7 +79,7 @@ jobs:
79
80
deploy_sprint:
81
needs: destroy_sprint
82
- if: ${{ github.event.inputs.deploy_live == false }}
+ if: github.event.inputs.deploy_live == 'false'
83
uses: ./.github/workflows/validation.yaml
84
with:
85
use_cases: ${{ github.event.inputs.use_cases_for_both }}
@@ -118,7 +118,7 @@ jobs:
118
119
deploy_live:
120
needs: destroy_live
121
- if: github.event.inputs.deploy_live == true
+ if: github.event.inputs.deploy_live == 'true'
122
123
124
0 commit comments