wip - rename workflow file

This commit is contained in:
tidwall 2020-11-03 14:23:26 -07:00
parent 6f65a5df1e
commit 773bef0658
1 changed files with 25 additions and 35 deletions

View File

@ -3,22 +3,6 @@
set -e
cd $(dirname "${BASH_SOURCE[0]}")/..
if [ "$DOCKER_USER" == "" ]; then
echo "Not pushing, DOCKER_USER not set"
exit 1
fi
if [ "$DOCKER_LOGIN" == "" ]; then
echo "Not pushing, DOCKER_LOGIN not set"
exit 1
fi
if [ "$DOCKER_PASSWORD" == "" ]; then
echo "Not pushing, DOCKER_PASSWORD not set"
exit 1
fi
# GIT_BRANCH is the current branch name
export GIT_BRANCH=$(git branch --show-current)
# GIT_VERSION - always the last verison number, like 1.12.1.
@ -29,24 +13,30 @@ export GIT_COMMIT_SHORT=$(git rev-parse --short HEAD)
export DOCKER_REPO=$DOCKER_USER/tile38
if [ "$GIT_BRANCH" != "master" ]; then
# only the master branch will work
echo "Not pushing, not on master"
elif [ "$DOCKER_USER" == "" ]; then
echo "Not pushing, DOCKER_USER not set"
exit 1
fi
push(){
docker tag $DOCKER_REPO:$GIT_COMMIT_SHORT $DOCKER_REPO:$1
docker push $DOCKER_REPO:$1
echo "Pushed $DOCKER_REPO:$1"
}
# docker login
echo $DOCKER_PASSWORD | docker login -u $DOCKER_LOGIN --password-stdin
# build the docker image
docker build -f Dockerfile -t $DOCKER_REPO:$GIT_COMMIT_SHORT .
if [ "$(curl -s https://hub.docker.com/v2/repositories/$DOCKER_REPO/tags/$GIT_VERSION/ | grep "digest")" == "" ]; then
# push the newest tag
push "$GIT_VERSION"
push "latest"
fi
push "edge"
elif [ "$DOCKER_LOGIN" == "" ]; then
echo "Not pushing, DOCKER_LOGIN not set"
exit 1
elif [ "$DOCKER_PASSWORD" == "" ]; then
echo "Not pushing, DOCKER_PASSWORD not set"
exit 1
else
push(){
docker tag $DOCKER_REPO:$GIT_COMMIT_SHORT $DOCKER_REPO:$1
docker push $DOCKER_REPO:$1
echo "Pushed $DOCKER_REPO:$1"
}
# docker login
echo $DOCKER_PASSWORD | docker login -u $DOCKER_LOGIN --password-stdin
# build the docker image
docker build -f Dockerfile -t $DOCKER_REPO:$GIT_COMMIT_SHORT .
if [ "$(curl -s https://hub.docker.com/v2/repositories/$DOCKER_REPO/tags/$GIT_VERSION/ | grep "digest")" == "" ]; then
# push the newest tag
push "$GIT_VERSION"
push "latest"
fi
push "edge"
fi