Skip to content

Commit

Permalink
fix the image repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
CameronRushton committed Aug 12, 2024
1 parent e0674b9 commit 24555f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ jobs:
GCR_IMAGE_TAGS_TO_PUSH=(
"0.0.1" "latest"
)
GCR_STAGING_IMAGE_REPO="${{ secrets.DELETE_ME_DEV_GCP_PROJECT_ID }}/${{ github.event.repository.name }}"
GCR_DEV_IMAGE_REPO="gcr.io/${{ secrets.DELETE_ME_DEV_GCP_PROJECT_ID }}/${{ github.event.repository.name }}"
for current_tag in ${GCR_IMAGE_TAGS_TO_PUSH[@]}
do
docker tag $ECR_DEV_IMAGE $GCR_STAGING_IMAGE_REPO:$current_tag
docker push $GCR_STAGING_IMAGE_REPO:$current_tag
docker tag $ECR_DEV_IMAGE $GCR_DEV_IMAGE_REPO:$current_tag
docker push $GCR_DEV_IMAGE_REPO:$current_tag
done

0 comments on commit 24555f1

Please sign in to comment.