From cf7a98c5b7681ec85925c688c65fe0c4fe513a0d Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Mon, 4 Mar 2024 13:11:00 -0600 Subject: [PATCH] Don't docker push image manifest --- 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 }