Browse Source

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

Ivan Dyachkov 2 năm trước cách đây
mục cha
commit
43116a0797
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      scripts/parse-git-ref.sh

+ 1 - 1
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