From 34db29e665cfe1bcacf3500074ee629ee3cacdd1 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 16 Jan 2024 16:21:24 +0300 Subject: [PATCH] feat: add `latest` tag (#247) Co-authored-by: Cian Johnston --- scripts/push_images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/push_images.sh b/scripts/push_images.sh index 7892e6e..6b58d41 100755 --- a/scripts/push_images.sh +++ b/scripts/push_images.sh @@ -102,5 +102,5 @@ for image in "${IMAGES[@]}"; do fi build_id=$(cat build.json | jq -r .\[\"depot.build\"\].buildID) - run_trace $DRY_RUN depot push --project "gb3p8xrshk" --tag "$image_ref" "$build_id" + run_trace $DRY_RUN depot push --project "gb3p8xrshk" --tag "$image_ref" --tag "codercom/enterprise-${image}:latest" "$build_id" done