Add more logs to the docker deployment script

This commit is contained in:
Clement Michaud 2017-06-01 22:35:37 +02:00
parent 361e36c566
commit bf266648e1

View File

@ -1,8 +1,12 @@
#!/bin/bash
if [ "$TRAVIS_BRANCH" == "master" ]; then
TAG=latest
echo "======================================="
echo "Authelia will be deployed on Dockerhub."
echo "======================================="
echo "TRAVIS_TAG='$TRAVIS_TAG'"
TAG=latest
if [ ! -z "$TRAVIS_TAG" ]; then
TAG=$TRAVIS_TAG
fi