From b388905ef0ca5d1358d3b1003fc71200538b5549 Mon Sep 17 00:00:00 2001 From: talithafrsc Date: Thu, 24 Oct 2024 17:46:09 +0700 Subject: [PATCH] fix secret variables --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 169e38c0a..1e256056e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: - name: Set GCP project run: gcloud config set project ${{ secrets.PROJECT_ID }} - name: Setup GCP authentication - run: echo "${{ secrets.BASE64_ENV_VAR }}" | base64 --decode > output_file.txt + run: echo "${{ secrets.GCP_JSON }}" | base64 --decode > output_file.txt - run: gcloud auth activate-service-account --key-file output_file.txt - name: Initiate Terraform run: terraform init