configure AGS community build

This commit is contained in:
rodicasutu
2020-07-01 16:28:05 +03:00
parent f84e5f8cf7
commit df699eb538
3 changed files with 62 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
echo "Branch name: ${TRAVIS_BRANCH}"
if [ "${TRAVIS_BRANCH}" == "master" ];
then
export mavenPhase="deploy"
elif [[ ${TRAVIS_BRANCH} = release* ]];
then
export mavenPhase="deploy"
else
export mavenPhase="verify"
fi