Skip to content
This repository was archived by the owner on Jun 10, 2026. It is now read-only.

Commit d964e53

Browse files
committed
chore: remove typo from exr-release.yml
1 parent 0be8526 commit d964e53

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ecr-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,20 +106,20 @@ jobs:
106106
- name: Create ECR manifest with explicit tag
107107
id: create-ecr-manifest-explicit
108108
run: |
109-
docker manifest create "${{ needs.build-and-upload-image-to-ecr.outputs.ecr_registry_repository }}:$${{ github.event.release.name }}" \
109+
docker manifest create "${{ needs.build-and-upload-image-to-ecr.outputs.ecr_registry_repository }}:${{ github.event.release.name }}" \
110110
"${{ needs.build-and-upload-image-to-ecr.outputs.full_image_x86_64 }}" \
111111
"${{ needs.build-and-upload-image-to-ecr.outputs.full_image_arm64 }}"
112112
- name: Annotate ECR manifest with explicit arm64 tag
113113
id: annotate-ecr-manifest-explicit-arm64
114114
run: |
115-
docker manifest annotate "${{ needs.build-and-upload-image-to-ecr.outputs.ecr_registry_repository }}:$${{ github.event.release.name }}" \
115+
docker manifest annotate "${{ needs.build-and-upload-image-to-ecr.outputs.ecr_registry_repository }}:${{ github.event.release.name }}" \
116116
"${{ needs.build-and-upload-image-to-ecr.outputs.full_image_arm64 }}" \
117117
--arch arm64 \
118118
--os linux
119119
- name: Annotate ECR manifest with explicit amd64 tag
120120
id: annotate-ecr-manifest-explicit-amd64
121121
run: |
122-
docker manifest annotate "${{ needs.build-and-upload-image-to-ecr.outputs.ecr_registry_repository }}:$${{ github.event.release.name }}" \
122+
docker manifest annotate "${{ needs.build-and-upload-image-to-ecr.outputs.ecr_registry_repository }}:${{ github.event.release.name }}" \
123123
"${{ needs.build-and-upload-image-to-ecr.outputs.full_image_x86_64 }}" \
124124
--arch amd64 \
125125
--os linux

0 commit comments

Comments
 (0)