Vault/.utility/deploy.sh

9 lines
208 B
Bash
Raw Normal View History

#!/bin/bash
if [[ "$TRAVIS_REPO_SLUG" != "MilkBowl/Vault" ]]
then
echo 'Travis can only publish docs for release builds.'
return 0
fi
mvn clean deploy --settings .utility/settings.xml
2015-01-04 07:08:10 +01:00
exit $?