Skip to content

Commit

Permalink
Merge pull request #1337 from MIT-LCP/fix_workflow
Browse files Browse the repository at this point in the history
update workflow auth
  • Loading branch information
alistairewj authored Jul 11, 2022
2 parents f7b3ce9 + fe773fe commit 4c2f0e3
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ jobs:
create-tables:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check out repository code
uses: actions/checkout@v3

- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@master
- id: 'auth'
uses: 'google-github-actions/auth@v0'
with:
project_id: ${{ secrets.GCP_PROJECT_ID }}
service_account_key: ${{ secrets.GCP_SA_KEY }}
export_default_credentials: true
project_id: ${{ secrets.GCP_PROJECT_ID }}
credentials_json: ${{ secrets.GCP_SA_KEY }}

- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v0'

- name: Run make_concepts
run: |
Expand Down

0 comments on commit 4c2f0e3

Please sign in to comment.