Skip to content

Commit

Permalink
fix(ci): Fix auto connect/endpoint deployments from circleci. (#819)
Browse files Browse the repository at this point in the history
When I was working on #812 I mislabeled the autoconnect/endpoint docker
images in the deploy step. This should fix that. I am also running those
steps on CI to make sure everything works.
  • Loading branch information
b4handjr authored Jan 9, 2025
2 parents a7068e0 + be7b213 commit bde05a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,8 @@ jobs:
fi
echo "export GAR_IMAGE=\"<<parameters.registry-url>>/${GCP_GAR_PROJECT_ID}/${GCP_GAR_REPO}/<<parameters.image>>\"" >> $BASH_ENV
source $BASH_ENV
docker tag <<parameters.image>>:<<parameters.build_tag>> $GAR_IMAGE:$GAR_TAG
docker tag <<parameters.image>>:<<parameters.build_tag>> $GAR_IMAGE:latest
docker tag <<parameters.image>> $GAR_IMAGE:$GAR_TAG
docker tag <<parameters.image>> $GAR_IMAGE:latest
# push-image parameters:
# https://circleci.com/developer/orbs/orb/circleci/gcp-gcr#commands-push-image
- gcp-gcr/push-image:
Expand Down Expand Up @@ -457,7 +457,7 @@ workflows:

- build:
name: build-autoconnect
image: autoconnect:build
image: autoconnect
crate: autoconnect
binary: autoconnect
filters:
Expand All @@ -466,7 +466,7 @@ workflows:

- build:
name: build-autoendpoint
image: autoendpoint:build
image: autoendpoint
crate: autoendpoint
binary: autoendpoint
filters:
Expand Down

0 comments on commit bde05a1

Please sign in to comment.