From dc7eac7cc1b1fa38697a554ed40eb42d9c882ef7 Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Mon, 4 Mar 2024 13:33:11 -0600 Subject: [PATCH] Don't docker push image manifest (#253) --- bin/publish-to-registries.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/publish-to-registries.sh b/bin/publish-to-registries.sh index 70a2c717..f2b2e38d 100755 --- a/bin/publish-to-registries.sh +++ b/bin/publish-to-registries.sh @@ -25,11 +25,11 @@ push_group() { if (( STACK_VERSION < 24 )); then # Re-tag amd64-only images docker tag "${source}" "${target}" + docker push "${target}" else # Make a carbon copy image index for multi-arch images docker buildx imagetools create -t "${target}" "${source}" fi - docker push "${target}" done }