Skip to content

Commit

Permalink
👷
Browse files Browse the repository at this point in the history
  • Loading branch information
rblaine95 committed Feb 11, 2025
1 parent 6f7fd22 commit 816dff8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,9 @@ jobs:
ref: 'master',
inputs: {
'image-tag': process.env.IMAGE_TAG,
'reset-deployments': false,
'regression-tests': true,
'run-tests': true
'reset-deployments': ${{ github.event.inputs.reset-deployments || false }},
'regression-tests': ${{ github.event.inputs.regression-tests || true }},
'run-tests': ${{ github.event.inputs.run-tests || true }}
}
})
console.log(result)
Expand Down

0 comments on commit 816dff8

Please sign in to comment.