You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/project/maintainers.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,12 +35,15 @@ Fork specific integration tests are run by the `fork_pr_integration_tests.yml_[p
35
35
2. If your offline store/online store needs special setup, add it to the job similar to how gcp is setup.
36
36
37
37
```yaml
38
-
- name: Set up gcloud SDK
38
+
- name: Authenticate to Google Cloud
39
+
uses: 'google-github-actions/auth@v1'
40
+
with:
41
+
credentials_json: '${{ secrets.GCP_SA_KEY }}'
42
+
- name: Set up gcloud SDK
39
43
uses: google-github-actions/setup-gcloud@v1
40
44
with:
41
-
project_id: ${{ secrets.GCP_PROJECT_ID }}
42
-
service_account_key: ${{ secrets.GCP_SA_KEY }}
43
-
export_default_credentials: true
45
+
version: '290.0.1'
46
+
project_id: ${{ secrets.GCP_PROJECT_ID }}
44
47
```
45
48
46
49
3. Add any environment variables that you need to your github [secrets](https://github.com/Azure/actions-workflow-samples/blob/master/assets/create-secrets-for-GitHub-workflows.md).
0 commit comments