From b0ee0ab56f815df2ee6f7aed487748027176685c Mon Sep 17 00:00:00 2001 From: emberian Date: Wed, 3 Apr 2024 17:11:43 -0400 Subject: [PATCH] Update export-git-env-vars.sh --- buildkite/scripts/export-git-env-vars.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/buildkite/scripts/export-git-env-vars.sh b/buildkite/scripts/export-git-env-vars.sh index d7fa5a54589..3dcfce62791 100755 --- a/buildkite/scripts/export-git-env-vars.sh +++ b/buildkite/scripts/export-git-env-vars.sh @@ -39,8 +39,11 @@ case $GITBRANCH in RELEASE=alpha ;; *beta*) # any tag including the string `beta` RELEASE=beta ;; + *devnet*) + RELEASE=devnet ;; ?*) # Any other non-empty tag. ? matches a single character and * matches 0 or more characters. - RELEASE=stable ;; + #RELEASE=stable ;; + RELEASE=unstable ;; "") # No tag RELEASE=unstable ;; *) # The above set of cases should be exhaustive, if they're not then still set RELEASE=unstable