travis: only deploy commits on the master branch
This commit is contained in:
@@ -5,7 +5,7 @@ PROJECT_VERSION=`mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}
|
||||
# Don't deploy pull requests (there are no secrets, anyway)
|
||||
# And don't deploy releases, they are already deployed by the updater before this,
|
||||
# and are signed.
|
||||
if [[ "${TRAVIS_PULL_REQUEST}" = "false" && $PROJECT_VERSION == *"-SNAPSHOT" ]]; then
|
||||
if [[ "${TRAVIS_PULL_REQUEST}" == "false" && $PROJECT_VERSION == *"-SNAPSHOT" && "$TRAVIS_BRANCH" == "master" ]]; then
|
||||
mvn clean deploy --settings travis/settings.xml
|
||||
else
|
||||
mvn clean verify --settings travis/settings.xml
|
||||
|
||||
Reference in New Issue
Block a user