-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delete existing service account keys (#411)
- Loading branch information
Showing
1 changed file
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,6 +100,8 @@ jobs: | |
with: | ||
project_id: '${{ secrets.GCP_PROJECT_ID }}' | ||
export_default_credentials: true | ||
- name: Delete existing service account keys | ||
run: (gcloud iam service-accounts keys list --project skyplane-ci --iam-account [email protected] --format="value(KEY_ID)" | xargs -I {} gcloud iam service-accounts keys delete --project skyplane-ci --iam-account [email protected] -q {}) || true | ||
- name: Run cloud tests | ||
run: | | ||
poetry run skyplane init -y | ||
|