Files
spring-ws/deploy.bash
2017-10-16 11:35:31 -05:00

7 lines
224 B
Bash
Executable File

#!/bin/bash -x
if [ "${CIRCLE_BRANCH}" == "master" ] || [ "${CIRCLE_BRANCH}" == "2.x" ]; then
./mvnw -Pdistribute,snapshot,docs clean -Dmaven.test.skip=true deploy
else
echo "We only deploy 'master' and '2.x' branches"
fi