We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f88122 commit 5921317Copy full SHA for 5921317
tools/travis/deploy.sh
@@ -30,3 +30,9 @@ docker build . --tag ${dockerhub_image}
30
31
echo docker push ${dockerhub_image}
32
docker push ${dockerhub_image}
33
+# if doing latest also push a tag with the hash commit
34
+if [ ${dockerhub_image_tag} == "latest" ]; then
35
+SHORT_COMMIT=`git rev-parse --short HEAD`
36
+docker tag ${dockerhub_image} ${dockerhub_image_prefix}/${dockerhub_image_name}:${SHORT_COMMIT}
37
+docker push ${dockerhub_image_prefix}/${dockerhub_image_name}:${SHORT_COMMIT}
38
+fi
0 commit comments