From a992c908b0173741ba9e9b429392b88f7293d301 Mon Sep 17 00:00:00 2001 From: John T Skarbek Date: Tue, 19 Feb 2019 13:51:36 +0000 Subject: Adds the commit sha to the pushed assets * This will upload the sha of the docker image containing assets to assist with building specific sha builds in the future. * Addresses: https://gitlab.com/gitlab-org/release/framework/issues/51 --- scripts/build_assets_image | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scripts/build_assets_image') diff --git a/scripts/build_assets_image b/scripts/build_assets_image index 4e5ef977161..9afada244c8 100755 --- a/scripts/build_assets_image +++ b/scripts/build_assets_image @@ -22,6 +22,8 @@ mkdir -p assets_container.build/public cp -r public/assets assets_container.build/public/ cp Dockerfile.assets assets_container.build/ docker build -t ${ASSETS_IMAGE_PATH}:${CI_COMMIT_REF_SLUG} -f assets_container.build/Dockerfile.assets assets_container.build/ +docker tag ${ASSETS_IMAGE_PATH}:${CI_COMMIT_REF_SLUG} ${ASSETS_IMAGE_PATH}:${CI_COMMIT_SHA} docker login -u gitlab-ci-token -p ${CI_JOB_TOKEN} ${CI_REGISTRY} -docker push ${ASSETS_IMAGE_PATH} +docker push ${ASSETS_IMAGE_PATH}:${CI_COMMIT_REF_SLUG} +docker push ${ASSETS_IMAGE_PATH}:${CI_COMMIT_SHA} -- cgit v1.2.3