We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7b3ce9 + fe773fe commit 4c2f0e3Copy full SHA for 4c2f0e3
.github/workflows/main.yml
@@ -9,14 +9,17 @@ jobs:
9
create-tables:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v2
+ - name: Check out repository code
13
+ uses: actions/checkout@v3
14
- - name: Set up Cloud SDK
15
- uses: google-github-actions/setup-gcloud@master
+ - id: 'auth'
16
+ uses: 'google-github-actions/auth@v0'
17
with:
- project_id: ${{ secrets.GCP_PROJECT_ID }}
18
- service_account_key: ${{ secrets.GCP_SA_KEY }}
19
- export_default_credentials: true
+ project_id: ${{ secrets.GCP_PROJECT_ID }}
+ credentials_json: ${{ secrets.GCP_SA_KEY }}
20
+
21
+ - name: 'Set up Cloud SDK'
22
+ uses: 'google-github-actions/setup-gcloud@v0'
23
24
- name: Run make_concepts
25
run: |
0 commit comments