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 - -