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
|
EDITION=Enterprise
|
||||||
RELEASE=false
|
RELEASE=false
|
||||||
LATEST=false
|
LATEST=false
|
||||||
|
elif [[ $1 =~ ^refs/heads/ci/.* ]]; then
|
||||||
|
PROFILE=emqx
|
||||||
|
EDITION=Opensource
|
||||||
|
RELEASE=false
|
||||||
|
LATEST=false
|
||||||
else
|
else
|
||||||
echo "Unrecognized git ref: $1"
|
echo "Unrecognized git ref: $1"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in New Issue