8 lines
326 B
Bash
8 lines
326 B
Bash
#!/bin/bash
|
|
|
|
# Only invoke the deployment to Sonatype when it's not a PR and only for master
|
|
if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
|
|
mvn deploy --settings travis/settings.xml
|
|
echo -e "Successfully deployed SNAPSHOT artifacts to Sonatype under Travis job ${TRAVIS_JOB_NUMBER}"
|
|
fi
|