From 4380159d74df39c8a4375d01a1a09b0deab72dfd Mon Sep 17 00:00:00 2001 From: Martin Aceto Date: Thu, 29 Feb 2024 13:45:43 -0500 Subject: [PATCH] adding cd into terraform folder --- .github/workflows/pipeline.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index e2587d9..14c883e 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -41,11 +41,13 @@ jobs: uses: hashicorp/setup-terraform@v3 - name: Terraform Init - run: terraform init + run: | + cd terraform/dev/ + terraform init - name: Terraform Plan id: plan - run: terraform plan -no-color + run: | + cd terraform/dev/ + terraform plan -no-color continue-on-error: true - -