7 lines
151 B
Bash
Executable File
7 lines
151 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
|
mvn -Pdistribute,snapshot,docs clean deploy
|
|
else
|
|
echo "We only deploy 'master' branch"
|
|
fi |