Merge pull request #3402 from bacongobbler/fix-circle-deploy

exit zero on non-master branch
pull/3408/head
Matthew Fisher 7 years ago committed by GitHub
commit 28b05b8817
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -29,7 +29,8 @@ if [[ -n "${CIRCLE_TAG:-}" ]]; then
elif [[ "${CIRCLE_BRANCH:-}" == "master" ]]; then
VERSION="canary"
else
exit 1
echo "Skipping deploy step; this is neither master or a tag"
exit
fi
echo "Install docker client"

Loading…
Cancel
Save