mirror of
https://github.com/MilkBowl/Vault.git
synced 2024-11-26 20:45:36 +01:00
15 lines
303 B
Bash
Executable File
15 lines
303 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 $?
|