Skip to content

Commit

Permalink
Make step optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Kemp committed Dec 22, 2023
1 parent c206cb5 commit ca9bd56
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,13 @@ jobs:
test--smoke:
needs: [get-branch-from-workflow-file, terraform--apply]
runs-on: [self-hosted, ci]
if: inputs.run_smoke_tests == 'true'
if: always()
steps:
- uses: actions/checkout@v4
with:
ref: ${{ needs.get-branch-from-workflow-file.outputs.branch_name }}
- uses: ./.github/actions/make/
- if: inputs.run_smoke_tests == 'true'
uses: ./.github/actions/make/
with:
command: test--smoke
requires-aws: true
Expand Down

0 comments on commit ca9bd56

Please sign in to comment.