Skip to content

Commit 5921317

Browse files
csantanaprdgrove-oss
authored andcommitted
travis push lastest as hash commit tag (#323)
1 parent 3f88122 commit 5921317

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tools/travis/deploy.sh

+6
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,9 @@ docker build . --tag ${dockerhub_image}
3030

3131
echo docker push ${dockerhub_image}
3232
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

Comments
 (0)