From 02a8ba1c2f2c707eba0041e4a039bcd5e7070921 Mon Sep 17 00:00:00 2001 From: Andy Miles Date: Sun, 8 Dec 2024 06:06:53 -0800 Subject: [PATCH] trying cleanup steps --- .github/workflows/terraform.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 914692b..883d2e7 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -37,15 +37,15 @@ jobs: - name: Terraform Init run: | terraform init - working-directory: ../../../terraform # Specify the directory containing your Terraform files + working-directory: terraform # Specify the directory containing your Terraform files - name: Terraform Plan run: | terraform plan - working-directory: ../../../terraform + working-directory: terraform - name: Terraform Apply if: github.ref == 'refs/heads/main' run: | terraform apply -auto-approve - working-directory: ../../../terraform + working-directory: terraform