From 559cda5d743d1b9a71a422ca831374eb1c84e5f6 Mon Sep 17 00:00:00 2001 From: Ivan Dyachkov Date: Fri, 4 Aug 2023 08:20:14 +0200 Subject: [PATCH] ci: accept 'ci/*' branches in parse-git-ref.sh --- scripts/parse-git-ref.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/parse-git-ref.sh b/scripts/parse-git-ref.sh index 9ad424bc3..a8d9fdf52 100755 --- a/scripts/parse-git-ref.sh +++ b/scripts/parse-git-ref.sh @@ -37,6 +37,11 @@ elif [[ $1 =~ ^refs/heads/release-[5-9][0-9]+$ ]]; then EDITION=Enterprise RELEASE=false LATEST=false +elif [[ $1 =~ ^refs/heads/ci/.* ]]; then + PROFILE=emqx + EDITION=Opensource + RELEASE=false + LATEST=false else echo "Unrecognized git ref: $1" exit 1