From 5eb38b1cda8bd501510a7f4eb48c72860f53060d Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Tue, 10 Mar 2026 13:47:49 +0100 Subject: [PATCH] fix: tf acc test pipeline --- .github/actions/acc_test/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/acc_test/action.yaml b/.github/actions/acc_test/action.yaml index 30617e15..d579e000 100644 --- a/.github/actions/acc_test/action.yaml +++ b/.github/actions/acc_test/action.yaml @@ -132,12 +132,12 @@ runs: set -e if [[ ! -f "${{ inputs.service_account_json_file_path }}" ]]; then echo "unable to find service account file '${{ inputs.service_account_json_file_path }}'" - if [ -z "${{ inputs.service_account_json_file_content }}" ]; then + if [ -z "${{ inputs.service_account_json_content }}" ]; then echo "ERROR: service_account_json_file_content MUST NOT be empty if account file is missing" exit 1 fi echo "creating service account file '${{ inputs.service_account_json_file_path }}'" - echo "${{ inputs.service_account_json_file_content }}" > "${{ inputs.service_account_json_file_path }}" + echo "${{ inputs.service_account_json_content }}" > "${{ inputs.service_account_json_file_path }}" fi cat "${{ inputs.service_account_json_file_path }}"