Skip to content

Commit cb2a75b

Browse files
committed
Bugfix in manual_deploy_sandbox.yaml
1 parent 8ba32ce commit cb2a75b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/manual_deploy_sandbox.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ jobs:
2828
run: terraform fmt -check -diff -recursive
2929
- name: Initialize Terraform
3030
run: terraform init -backend-config="./${{ inputs.environment }}.config"
31-
- name: Run Custom Plan script
32-
run: |
33-
if: exists(./scripts/terraform_plan_${{ inputs.environment }}.sh)
3431
- name: Run Terraform Plan
3532
run: |-
3633
if [ -e ./scripts/terraform_plan_${{ inputs.environment }}.sh ]
@@ -43,7 +40,7 @@ jobs:
4340
run: |-
4441
if [ -e ./scripts/terraform_apply_${{ inputs.environment }}.sh ]
4542
then
46-
./scripts/terraform_apply_${{ inputs.environment.sh }}
43+
./scripts/terraform_apply_${{ inputs.environment }}.sh
4744
else
4845
terraform apply -auto-approve -var-file="${{ inputs.environment }}.tfvars"
4946
fi

0 commit comments

Comments
 (0)