-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50fff88
commit 11f853f
Showing
1 changed file
with
16 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 |
---|---|---|
|
@@ -32,6 +32,22 @@ jobs: | |
build-args: | | ||
BUILDKIT_INLINE_CACHE=1 | ||
- name: Set up gcloud CLI | ||
uses: google-github-actions/[email protected] | ||
with: | ||
service_account_key: ${{ secrets.GCP_SA_KEY }} | ||
project_id: genuine-flight-317411 | ||
export_default_credentials: true | ||
|
||
# Configure Docker to use the gcloud command-line tool as a credential helper for authentication | ||
- name: Configure Docker | ||
run: |- | ||
gcloud auth configure-docker us-central1-docker.pkg.dev | ||
- name: Verify gcloud configuration | ||
run: |- | ||
gcloud config get-value project | ||
- name: Release Docker to old repo | ||
run: |- | ||
docker buildx build \ | ||
|