From adcc1b98c3498e8bd05c5cd006ed013f01550338 Mon Sep 17 00:00:00 2001 From: talithafrsc Date: Thu, 24 Oct 2024 17:47:52 +0700 Subject: [PATCH] fix decode flag --- .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 1e256056e..bdaf5be43 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.GCP_JSON }}" | base64 --decode > output_file.txt + run: echo "${{ secrets.GCP_JSON }}" | base64 -d > output_file.txt - run: gcloud auth activate-service-account --key-file output_file.txt - name: Initiate Terraform run: terraform init