mirror of
https://github.com/MilkBowl/Vault.git
synced 2024-11-10 21:01:03 +01:00
14 lines
306 B
Bash
Executable File
14 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
if [[ "$TRAVIS_REPO_SLUG" != "MilkBowl/Vault" ]]
|
|
then
|
|
echo 'Travis can only publish docs for release builds.'
|
|
return 0
|
|
fi
|
|
if [[ "$TRAVIS_PULL_REQUEST" == "true" || "$TRAVIS_BRANCH" != "master" ]]
|
|
then
|
|
mvn test
|
|
else
|
|
mvn clean deploy --settings .utility/settings.xml
|
|
fi
|
|
|
|
exit $? |