ci: fix regex in parse-git-ref.sh
This commit is contained in:
parent
ec75fa32cf
commit
43116a0797
|
@ -32,7 +32,7 @@ elif [[ $1 =~ ^refs/heads/master$ ]]; then
|
||||||
EDITION=Opensource
|
EDITION=Opensource
|
||||||
RELEASE=false
|
RELEASE=false
|
||||||
LATEST=false
|
LATEST=false
|
||||||
elif [[ $1 =~ ^refs/heads/release-[5-9]+$ ]]; then
|
elif [[ $1 =~ ^refs/heads/release-[5-9][0-9]+$ ]]; then
|
||||||
PROFILE=emqx-enterprise
|
PROFILE=emqx-enterprise
|
||||||
EDITION=Enterprise
|
EDITION=Enterprise
|
||||||
RELEASE=false
|
RELEASE=false
|
||||||
|
|
Loading…
Reference in New Issue