From 43116a0797e346eda6ec9502fc8042746fb5c795 Mon Sep 17 00:00:00 2001 From: Ivan Dyachkov Date: Fri, 4 Aug 2023 07:19:31 +0200 Subject: [PATCH] ci: fix regex in parse-git-ref.sh --- scripts/parse-git-ref.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/parse-git-ref.sh b/scripts/parse-git-ref.sh index 9591f7b34..9ad424bc3 100755 --- a/scripts/parse-git-ref.sh +++ b/scripts/parse-git-ref.sh @@ -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