From d09a00c3bea3e9e51bf794e817b74eae580bfd75 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 8 Mar 2019 12:26:19 -0500 Subject: [PATCH] fix yaml validation --- appveyor.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 8e8ee91850..9a0f2c58f0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,11 +19,12 @@ build_script: - sh: chmod +x ./build.sh - sh: ./build.sh - sh: ./build.sh tag dev -- sh: [ "${APPVEYOR_REPO_TAG_NAME}" != "" ] && echo "TAG IS SET" -#- sh: [ "${APPVEYOR_REPO_TAG_NAME}" != "" ] && ./build.sh tag ${APPVEYOR_REPO_TAG_NAME#"v"} +- sh: '[[ "${APPVEYOR_REPO_TAG_NAME}" != "" ]] && echo "TAG IS SET"' +- sh: '[[ $APPVEYOR_FORCED_BUILD ]] && echo "FORCED BUILD"' +#- sh: '[[ "${APPVEYOR_REPO_TAG_NAME}" != "" && $APPVEYOR_FORCED_BUILD ]] && ./build.sh tag ${APPVEYOR_REPO_TAG_NAME#"v"}' - sh: docker images - sh: ./build.sh push dev -#- sh: [ "${APPVEYOR_REPO_TAG_NAME}" != "" ] && ./build.sh push latest && ./build.sh push ${APPVEYOR_REPO_TAG_NAME#"v"} +#- sh: '[[ "${APPVEYOR_REPO_TAG_NAME}" != "" && $APPVEYOR_FORCED_BUILD ]] && ./build.sh push latest && ./build.sh push ${APPVEYOR_REPO_TAG_NAME#"v"}' - cmd: msbuild bitwarden-server.sln /p:Configuration=Debug /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" after_build: - sh: docker logout