Skip to content

Commit

Permalink
Merge pull request #24 from PADAS/fix-mail-yaml
Browse files Browse the repository at this point in the history
Fix missing needed step in `main.yaml`
  • Loading branch information
vgarcia13 authored Jul 29, 2024
2 parents d4de520 + cc1d5ae commit c2e14ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
deploy_dev:
uses: PADAS/gundi-workflows/.github/workflows/update_hcl.yml@v2
if: startsWith(github.ref, 'refs/heads/main')
needs: [build]
needs: [vars, build]
with:
git_repository: PADAS/gundi-integrations-v2-infra
file_location: ${{ needs.vars.outputs.tf_file_dev }}
Expand All @@ -53,7 +53,7 @@ jobs:
deploy_stage:
uses: PADAS/gundi-workflows/.github/workflows/update_hcl.yml@v2
if: startsWith(github.ref, 'refs/heads/release')
needs: [build]
needs: [vars, build]
with:
git_repository: PADAS/gundi-integrations-v2-infra
file_location: ${{ needs.vars.outputs.tf_file_stage }}
Expand All @@ -66,7 +66,7 @@ jobs:
deploy_prod:
uses: PADAS/gundi-workflows/.github/workflows/update_hcl.yml@v2
if: startsWith(github.ref, 'refs/heads/release')
needs: [build, deploy_stage]
needs: [vars, build, deploy_stage]
with:
git_repository: PADAS/gundi-integrations-v2-infra
file_location: ${{ needs.vars.outputs.tf_file_prod }}
Expand Down

0 comments on commit c2e14ec

Please sign in to comment.