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