From 1c6c5da2232e303d37c6146edb56a228655b2bce Mon Sep 17 00:00:00 2001 From: Wesley Pettit Date: Tue, 11 Apr 2023 15:50:05 -0700 Subject: [PATCH] sync: pull debug images before creating manifest list Signed-off-by: Wesley Pettit --- scripts/publish.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/publish.sh b/scripts/publish.sh index 3ae794883..71236ac57 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -382,8 +382,12 @@ sync_image_version() { aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/aws-observability || echo "0" sync_public_and_repo ${region} ${account_id} ${endpoint} "${arch}-${AWS_FOR_FLUENT_BIT_VERSION_DOCKERHUB}" + sync_public_and_repo ${region} ${account_id} ${endpoint} "${arch}-debug-${AWS_FOR_FLUENT_BIT_VERSION_DOCKERHUB}" + sync_public_and_repo ${region} ${account_id} ${endpoint} "${init}-${arch}-${AWS_FOR_FLUENT_BIT_VERSION_DOCKERHUB}" + sync_public_and_repo ${region} ${account_id} ${endpoint} "${init}-${arch}-debug-${AWS_FOR_FLUENT_BIT_VERSION_DOCKERHUB}" + sync_public_and_repo ${region} ${account_id} ${endpoint} "${arch}-${AWS_FOR_FLUENT_BIT_STABLE_VERSION}" done