Skip to content

Commit

Permalink
Fix GCloud GH actions authentication (#813)
Browse files Browse the repository at this point in the history
* Fix GCloud GH actions authentication

* Lint
  • Loading branch information
nikhilwoodruff authored Oct 24, 2023
1 parent a71eb49 commit 274090c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ jobs:
uses: google-github-actions/setup-gcloud@v1
with:
project_id: policyengine-app
service_account_key: ${{ secrets.GCP_SA_KEY }}
export_default_credentials: true
- name: "Authenticate to Google Cloud"
uses: "google-github-actions/auth@v1"
with:
credentials_json: ${{ secrets.GCP_SA_KEY }}
create_credentials_file: true
- name: Install dependencies
run: make install
- name: Deploy
Expand Down

0 comments on commit 274090c

Please sign in to comment.