From 11fa63a63053f6ab0ae092d1b8ca83132f596a27 Mon Sep 17 00:00:00 2001 From: Andrejs Cunskis <acunskis@gitlab.com> Date: Thu, 1 Feb 2024 04:59:41 +0900 Subject: [PATCH] Fix release-image build --- support/docker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/docker b/support/docker index 62a9307e18b30..ff5efed8d38cb 100755 --- a/support/docker +++ b/support/docker @@ -24,8 +24,8 @@ case "$1" in dependency_sha=$(cat support/bootstrap support/bootstrap-common.sh Dockerfile packages_ubuntu.txt .tool-versions | sha256sum | cut -d ' ' -f 1) cache_image="${DEFAULT_IMAGE_WITHOUT_TAG}:${dependency_sha}" default_destinations="--tag ${cache_image} --tag ${DEFAULT_BRANCH_IMAGE}" - main_branch_destinations="--tag ${bootstrapped_image}/main:${CI_COMMIT_SHA} --tag ${bootstrapped_image}/main:latest" bootstrapped_image="${CI_REGISTRY_IMAGE}/asdf-bootstrapped-verify" + main_branch_destinations="--tag ${bootstrapped_image}/main:${CI_COMMIT_SHA} --tag ${bootstrapped_image}/main:latest" # We push verify image from main branch to separate path and tag with commit sha so we are able to properly # pin image versions in 'gitlab' canonical project -- GitLab