deploy.sh: Exit if branch is not on whitelist

This commit is contained in:
Mike Cronce 2018-12-10 11:06:08 -05:00
parent 78750b2dd5
commit b20f4184ba

View File

@ -6,9 +6,13 @@ if [ "${TRAVIS_BRANCH}" == 'master' ]; then
elif [ "${TRAVIS_BRANCH}" == 'csi-v1.0' ]; then
export RBD_IMAGE_VERSION='v1.0.0';
export CEPHFS_IMAGE_VERSION='v1.0.0';
else
echo "!!! Branch ${TRAVIS_BRANCH} is not a deployable branch; exiting";
exit 0; # Exiting 0 so that this isn't marked as failing
fi;
if [ "${TRAVIS_PULL_REQUEST}" == "false" ] && [ -n "${RBD_IMAGE_VERSION}" ]; then
if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
docker login -u "${QUAY_IO_USERNAME}" -p "${QUAY_IO_PASSWORD}" quay.io
make push-image-rbdplugin push-image-cephfsplugin
fi;