mirror of
https://github.com/bitwarden/server.git
synced 2024-12-23 17:07:42 +01:00
true string check
This commit is contained in:
parent
10d6ace700
commit
f6c8909ac0
@ -19,7 +19,7 @@ chmod +x ./build.sh
|
||||
./build.sh
|
||||
./build.sh tag dev
|
||||
|
||||
if [ $PROD_DEPLOY ]
|
||||
if [ "${PROD_DEPLOY}" == "true" ]
|
||||
then
|
||||
./build.sh tag beta
|
||||
./build.sh tag $TAG_NAME
|
||||
@ -28,7 +28,7 @@ fi
|
||||
docker images
|
||||
./build.sh push dev
|
||||
|
||||
if [ $PROD_DEPLOY ]
|
||||
if [ "${PROD_DEPLOY}" == "true" ]
|
||||
then
|
||||
./build.sh push beta
|
||||
./build.sh push latest
|
||||
|
Loading…
Reference in New Issue
Block a user