diff options
author | Brad Linden <brad@lindenlab.com> | 2024-06-13 17:52:34 -0700 |
---|---|---|
committer | Brad Linden <brad@lindenlab.com> | 2024-06-13 17:55:05 -0700 |
commit | b9f287815a39c69f3db5212f06a295d1e5dbb6da (patch) | |
tree | 8629ba2660dcf42dbac45462f4940c0dce52d3a0 | |
parent | 41cb778fb0a2918816965ccc0ece5d0080d5180a (diff) |
Add new viewer_channel detection for develop branch
-rw-r--r-- | .github/workflows/build.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 57faafc042..f9b0bdc309 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -231,6 +231,9 @@ jobs: elif [[ "$prefix" == "release" || "$prefix" == "main" ]]; then export viewer_channel="Second Life Release" + elif [[ "$branch" == "develop" ]]; + then + export viewer_channel="Second Life Develop" else export viewer_channel="Second Life Test" fi |