From 8f94d47fa994ab9859f6c6dbea41c63ea68eb965 Mon Sep 17 00:00:00 2001 From: Reese <3253971+figadore@users.noreply.github.com> Date: Mon, 16 Sep 2024 12:26:20 -0700 Subject: [PATCH] remove only_auth param (#11) revert optional only_auth param since it is breaking some builds and not as useful as was hoped bump #patch --- action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index 4ce09a1..f603a7b 100644 --- a/action.yml +++ b/action.yml @@ -7,10 +7,10 @@ inputs: gcp_service_account: description: GCP service Account required: true - only_auth: - description: Set to true to skip setting up gcloud SDK and just do workload ID auth - required: false - default: "false" + #only_auth: + # description: Set to true to skip setting up gcloud SDK and just do workload ID auth + # required: false + # default: "false" outputs: project_id: description: |- @@ -49,7 +49,7 @@ runs: echo access_token_expiration="${{ steps.auth.outputs.access_token_expiration }}" >> $GITHUB_OUTPUT echo id_token="${{ steps.auth.outputs.id_token }}" >> $GITHUB_OUTPUT - name: 'Set up Cloud SDK' - if: ${{ inputs.only_auth != 'true' }} + #if: ${{ inputs.only_auth != 'true' }} uses: google-github-actions/setup-gcloud@v2 - name: Debug gcloud auth shell: bash