1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-24 17:17:40 +01:00

true string check

This commit is contained in:
Kyle Spearrin 2019-03-08 14:22:25 -05:00
parent 10d6ace700
commit f6c8909ac0

View File

@ -19,7 +19,7 @@ chmod +x ./build.sh
./build.sh ./build.sh
./build.sh tag dev ./build.sh tag dev
if [ $PROD_DEPLOY ] if [ "${PROD_DEPLOY}" == "true" ]
then then
./build.sh tag beta ./build.sh tag beta
./build.sh tag $TAG_NAME ./build.sh tag $TAG_NAME
@ -28,7 +28,7 @@ fi
docker images docker images
./build.sh push dev ./build.sh push dev
if [ $PROD_DEPLOY ] if [ "${PROD_DEPLOY}" == "true" ]
then then
./build.sh push beta ./build.sh push beta
./build.sh push latest ./build.sh push latest