From 839ec0eb05f98614af1285c637256f135857e0d8 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Tue, 16 Jan 2024 14:28:37 +0000 Subject: [PATCH] fix(scripts/push_images.sh): break into separate depot push invocations (#252) --- scripts/push_images.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/push_images.sh b/scripts/push_images.sh index 2477554..4df22d1 100755 --- a/scripts/push_images.sh +++ b/scripts/push_images.sh @@ -102,5 +102,6 @@ for image in "${IMAGES[@]}"; do fi build_id=$(cat "build_${image}.json" | jq -r .\[\"depot.build\"\].buildID) - run_trace $DRY_RUN depot push --project "gb3p8xrshk" --tag "$image_ref" --tag "codercom/enterprise-${image}:latest" "$build_id" + run_trace $DRY_RUN depot push --project "gb3p8xrshk" --tag "$image_ref" "$build_id" + run_trace $DRY_RUN depot push --project "gb3p8xrshk" --tag "codercom/enterprise-${image}:latest" "$build_id" done