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
|
||||
RELEASE=false
|
||||
LATEST=false
|
||||
elif [[ $1 =~ ^refs/heads/release-[5-9]+$ ]]; then
|
||||
elif [[ $1 =~ ^refs/heads/release-[5-9][0-9]+$ ]]; then
|
||||
PROFILE=emqx-enterprise
|
||||
EDITION=Enterprise
|
||||
RELEASE=false
|
||||
|
|
Loading…
Reference in New Issue