Skip to content

Commit

Permalink
CI: add case for umt release channel
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Feb 22, 2024
1 parent 71578ef commit 342751e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion buildkite/scripts/export-git-env-vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ fi
case $GITBRANCH in
master)
RELEASE=stable ;;
compatible|master|release*) # whitelist of branches that can be tagged
compatible|testing/hard-fork-internal|release*) # whitelist of branches that can be tagged
case "${THIS_COMMIT_TAG}" in
*umt*) # any tag including the string `umt`
RELEASE=umt ;;
*alpha*) # any tag including the string `alpha`
RELEASE=alpha ;;
*beta*) # any tag including the string `beta`
Expand Down

0 comments on commit 342751e

Please sign in to comment.