This repository was archived by the owner on Jun 10, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments