From ad2f24b67b7a0b25e73b3daf8bc4254a1c63e354 Mon Sep 17 00:00:00 2001 From: Jerome Simeon Date: Mon, 30 Sep 2019 14:38:52 -0400 Subject: [PATCH] chore(deploy) Only create a stable release for a tag on master Signed-off-by: Jerome Simeon --- .travis/base.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/base.sh b/.travis/base.sh index 284b2260e..0b0d9e671 100755 --- a/.travis/base.sh +++ b/.travis/base.sh @@ -37,7 +37,7 @@ if [ ! -f ${DIR}/build.cfg ]; then echo "ABORT_BUILD=false" > ${DIR}/build.cfg echo "ABORT_CODE=0" >> ${DIR}/build.cfg ## determine the build type here - if [ -z "${TRAVIS_TAG}" ]; then + if [ -z "${TRAVIS_TAG}" ] || [ "${TRAVIS_BRANCH}" != "master" ]; then BUILD_RELEASE="unstable" BUILD_FOCUS="latest" else