ci: accept 'ci/*' branches in parse-git-ref.sh

This commit is contained in:
Ivan Dyachkov 2023-08-04 08:20:14 +02:00
parent f31276f8d8
commit 559cda5d74
1 changed files with 5 additions and 0 deletions

View File

@ -37,6 +37,11 @@ elif [[ $1 =~ ^refs/heads/release-[5-9][0-9]+$ ]]; then
EDITION=Enterprise
RELEASE=false
LATEST=false
elif [[ $1 =~ ^refs/heads/ci/.* ]]; then
PROFILE=emqx
EDITION=Opensource
RELEASE=false
LATEST=false
else
echo "Unrecognized git ref: $1"
exit 1