Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: minor fixes for GAR deploy CircleCI jobs #764

Merged
merged 9 commits into from
Sep 5, 2024
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,11 @@ jobs:
use_oidc: true
workload_identity_pool_id: GCP_OIDC_WIP_ID
workload_identity_pool_provider_id: GCP_OIDC_WIP_PROVIDER_ID
- attach_workspace:
at: /tmp/cache
- run:
name: Restore Docker image cache
command: docker load -i /tmp/cache/docker.tar
emaydeck-mozilla marked this conversation as resolved.
Show resolved Hide resolved
- run:
name: Tag image
command: |
Expand All @@ -451,7 +456,7 @@ jobs:
# push-image parameters:
# https://circleci.com/developer/orbs/orb/circleci/gcp-gcr#commands-push-image
- gcp-gcr/push-image:
image: $GAR_IMAGE
image: "${GCP_GAR_REPO}/<<parameters.image>>"
google-project-id: GCP_GAR_PROJECT_ID
registry-url: <<parameters.registry-url>>
tag: $GAR_TAG,latest
Expand Down