Skip to content

Commit a06f21b

Browse files
authored
Fix image tagging in CI on main (#2301)
1 parent b9b80c3 commit a06f21b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci-main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ jobs:
5454
- name: Tag and upload image
5555
run: |
5656
IMAGE_TAG="$(./.github/scripts/docker-image-hash)"
57-
docker tag "${{ env.ecr_repository }}:${IMAGE_TAG}" "${{ env.ecr_repository }}:main"
57+
docker tag "smithy-rs-base-image:${IMAGE_TAG}" "${{ env.ecr_repository }}:${IMAGE_TAG}"
58+
docker tag "smithy-rs-base-image:${IMAGE_TAG}" "${{ env.ecr_repository }}:main"
5859
docker push "${{ env.ecr_repository }}:${IMAGE_TAG}"
5960
docker push "${{ env.ecr_repository }}:main"
6061

0 commit comments

Comments
 (0)