mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-24 08:09:22 +00:00
17 lines
No EOL
587 B
YAML
17 lines
No EOL
587 B
YAML
name: 'Setup gcloud environment'
|
|
description: 'Setup a gcloud environment and add it to the PATH'
|
|
author: 'GoogleCloudPlatform'
|
|
inputs:
|
|
version:
|
|
description: 'The version of the gcloud SDK to be installed. Example: 270.0.0'
|
|
default: '270.0.0'
|
|
required: false
|
|
service_account_email:
|
|
description: 'The service account email which will be used for authentication.'
|
|
required: false
|
|
service_account_key:
|
|
description: 'The service account key which will be used for authentication.'
|
|
required: true
|
|
runs:
|
|
using: 'node12'
|
|
main: 'setup-gcloud/dist/index.js' |