Skip to content

Commit

Permalink
Skip gcloud sdk (#10)
Browse files Browse the repository at this point in the history
fixing conditional for skipping gcloud sdk
#patch
  • Loading branch information
figadore authored Sep 14, 2024
1 parent a04bf3e commit b9a8c7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
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: "${{ github.event.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 b9a8c7d

Please sign in to comment.