ci: accept 'ci/*' branches in parse-git-ref.sh
This commit is contained in:
parent
f31276f8d8
commit
559cda5d74
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue