Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
chore(deploy) Only create a stable release for a tag on master
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Simeon <jeromesimeon@me.com>
  • Loading branch information
jeromesimeon committed Sep 30, 2019
1 parent 32641fd commit ad2f24b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis/base.sh
Expand Up @@ -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
Expand Down

0 comments on commit ad2f24b

Please sign in to comment.