ci: fix regex in parse-git-ref.sh

This commit is contained in:
Ivan Dyachkov 2023-08-04 07:19:31 +02:00
parent ec75fa32cf
commit 43116a0797
1 changed files with 1 additions and 1 deletions

View File

@ -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