summaryrefslogtreecommitdiff
path: root/scripts/build_assets_image
diff options
context:
space:
mode:
authorJohn T Skarbek <jtslear@gmail.com>2019-02-18 08:55:49 -0500
committerJohn T Skarbek <jtslear@gmail.com>2019-02-18 08:55:49 -0500
commit481938de847294018d202df13565c8dbc8a8ebc2 (patch)
tree739c3709c5b578c86b424370ebecb621f3f4d8e2 /scripts/build_assets_image
parentf562d473b67f541c7efcea9d3148f61529d2ef66 (diff)
downloadgitlab-ce-481938de847294018d202df13565c8dbc8a8ebc2.tar.gz
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: gitlab-org/release/framework#51
Diffstat (limited to 'scripts/build_assets_image')
-rwxr-xr-xscripts/build_assets_image4
1 files changed, 3 insertions, 1 deletions
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}