Skip to content

Commit

Permalink
remove only_auth param (#11)
Browse files Browse the repository at this point in the history
revert optional only_auth param since it is breaking some builds and not as useful as was hoped
bump #patch
  • Loading branch information
figadore authored Sep 16, 2024
1 parent b9a8c7d commit 8f94d47
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |-
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8f94d47

Please sign in to comment.