We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c88181 commit c15a9b3Copy full SHA for c15a9b3
.github/workflows/terraform.yml
@@ -56,7 +56,7 @@ jobs:
56
- name: Terraform Apply for Dev
57
id: terraform-apply-dev
58
if: github.ref == 'refs/heads/develop' && github.event_name == 'push'
59
- run: terraform apply "dev.plan"
+ run: cd infra && terraform apply "dev.plan"
60
61
- name: Terraform Create/Select Prod Workspace
62
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
@@ -72,4 +72,4 @@ jobs:
72
- name: Terraform Apply for Prod
73
id: terraform-apply-prod
74
75
- run: terraform apply "prod.plan"
+ run: cd infra && terraform apply "prod.plan"
0 commit comments