We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcdbef1 commit 0d344a9Copy full SHA for 0d344a9
scripts/update-version.sh
@@ -10,8 +10,8 @@ VERSION=""
10
# when executing this script with a git tag defined by buildkite, we are releasing to production
11
if [[ ${BUILDKITE_TAG:-""} != "" ]]; then
12
VERSION="$BUILDKITE_TAG"
13
-# when executing this script on the master branch, we are releasing internal versions
14
-elif [[ ${BUILDKITE_BRANCH:-} == "master" ]]; then
+# when executing this script on the master/staging branch, we are releasing internal versions
+elif [[ ${BUILDKITE_BRANCH:-} == "master" || ${BUILDKITE_BRANCH:-} == "staging" ]]; then
15
VERSION=${PREV_TAG}
16
17
# if there are multiple revisions, append that revision number
0 commit comments