version 1.2.5

This commit is contained in:
Robert Adams
2019-12-21 08:38:13 -08:00
parent f3cdbf2c80
commit cd0b473e7b
+4 -4
View File
@@ -16,13 +16,13 @@ VERSION=$(cat VERSION)
# Tag and create commit git sources with the version number.
# Not working yet... need to automate Visual Studio versioning.
DO_GIT_TAG=no
DO_GIT_TAG=yes
# Build the docker image of the latest git commited sources.
DO_DOCKER_BUILD=yes
# Push the built docker image to DockerHub.
DO_DOCKERHUB_PUSH=no
DO_DOCKERHUB_PUSH=yes
# Tag the version in git
if [[ "$DO_GIT_TAG" == "yes" ]] ; then
@@ -34,8 +34,8 @@ if [[ "$DO_GIT_TAG" == "yes" ]] ; then
fi
if [[ "$DO_DOCKER_BUILD" == "yes" ]] ; then
# docker build --no-cache --build-arg VERSION=${VERSION} -t herbal3d/convoar .
docker build --build-arg VERSION=${VERSION} -t herbal3d/convoar .
docker build --no-cache --build-arg VERSION=${VERSION} -t herbal3d/convoar .
# docker build --build-arg VERSION=${VERSION} -t herbal3d/convoar .
docker tag $DOCKERHUB_USER/$IMAGE:latest $DOCKERHUB_USER/$IMAGE:$VERSION
fi