1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-15 18:18:12 -05:00

env:tag_name

This commit is contained in:
Kyle Spearrin 2019-03-13 10:18:37 -04:00
parent d6e7040aba
commit 334c283d53

View File

@ -52,7 +52,7 @@ build_script:
if($env:PROD_DEPLOY -eq "true") { if($env:PROD_DEPLOY -eq "true") {
./build.sh tag beta ./build.sh tag beta
./build.sh tag ${TAG_NAME} ./build.sh tag $env:TAG_NAME
} }
docker images docker images
@ -61,7 +61,7 @@ build_script:
if($env:PROD_DEPLOY -eq "true") { if($env:PROD_DEPLOY -eq "true") {
./build.sh push beta ./build.sh push beta
./build.sh push latest ./build.sh push latest
./build.sh push ${TAG_NAME} ./build.sh push $env:TAG_NAME
} }
} else { } else {
msbuild bitwarden-server.sln /p:Configuration=Debug /verbosity:minimal ` msbuild bitwarden-server.sln /p:Configuration=Debug /verbosity:minimal `