1
0
Fork 0
mirror of synced 2024-07-18 20:56:04 +12:00

Merge pull request #8121 from Budibase/branch-fallback-budibase-ci

Fallback to push branch name for pro install script
This commit is contained in:
melohagan 2022-10-04 14:59:12 +01:00 committed by GitHub
commit 5e42c84a5b

View file

@ -18,6 +18,11 @@ git clone https://$PERSONAL_ACCESS_TOKEN@github.com/Budibase/budibase-pro.git
if [[ -d "budibase-pro" ]]; then
cd budibase-pro
if [[ -z "${BRANCH}" ]]; then
echo Using GITHUB_REF_NAME: $GITHUB_REF_NAME
export BRANCH=$GITHUB_REF_NAME
fi
# Try to checkout the matching pro branch
git checkout $BRANCH