Skip to content

Commit

Permalink
cd: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
brunograna committed May 23, 2024
1 parent 1c88181 commit c15a9b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Terraform Apply for Dev
id: terraform-apply-dev
if: github.ref == 'refs/heads/develop' && github.event_name == 'push'
run: terraform apply "dev.plan"
run: cd infra && terraform apply "dev.plan"

- name: Terraform Create/Select Prod Workspace
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
Expand All @@ -72,4 +72,4 @@ jobs:
- name: Terraform Apply for Prod
id: terraform-apply-prod
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: terraform apply "prod.plan"
run: cd infra && terraform apply "prod.plan"

0 comments on commit c15a9b3

Please sign in to comment.