Skip to content

Commit

Permalink
fixed job triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbass committed Jun 12, 2024
1 parent 1391d7d commit 95e49d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
- deploy-stage-iac
if: |
always() &&
(needs.deploy-iac.result == 'success' || needs.deploy-iac.result == 'skipped') &&
(needs.deploy-stage-iac.result == 'success' || needs.deploy-stage-iac.result == 'skipped') &&
needs.detect-changes.outputs.deploy-frontend == 'true'
environment: staging
runs-on: ubuntu-latest
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
- deploy-stage-iac
if: |
always() &&
(needs.deploy-iac.result == 'success' || needs.deploy-iac.result == 'skipped') &&
(needs.deploy-stage-iac.result == 'success' || needs.deploy-stage-iac.result == 'skipped') &&
needs.detect-changes.outputs.deploy-backend == 'true'
environment: staging
runs-on: ubuntu-latest
Expand Down

0 comments on commit 95e49d5

Please sign in to comment.