Skip to content

Commit 60e7fb5

Browse files
committed
Update image manifest creation commands
Create a new manifest list based on source manifests. The source manifests can be manifest lists or single platform distribution manifests. Signed-off-by: Zvonko Kaiser <zkaiser@nvidia.com>
1 parent a24005d commit 60e7fb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ jobs:
100100
env:
101101
MULTIARCH_IMAGE: ghcr.io/${{ env.LOWERCASE_REPO_OWNER }}/k8s-kata-manager:${{ env.COMMIT_SHORT_SHA }}
102102
run: |
103-
docker manifest create \
104-
${MULTIARCH_IMAGE} \
103+
docker buildx imagetools create \
104+
--tag ${MULTIARCH_IMAGE} \
105105
ghcr.io/${{ env.LOWERCASE_REPO_OWNER }}/k8s-kata-manager:${{ env.COMMIT_SHORT_SHA }}-amd64 \
106106
ghcr.io/${{ env.LOWERCASE_REPO_OWNER }}/k8s-kata-manager:${{ env.COMMIT_SHORT_SHA }}-arm64
107-
docker manifest push ${MULTIARCH_IMAGE}
107+

0 commit comments

Comments
 (0)