diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-05-15 16:08:54 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-05-15 16:08:54 -0400 |
commit | f822193974af363fa4bb0208dc02848be6c983a2 (patch) | |
tree | 4be4494d3dd03aad30a383bea76471b2345557c3 | |
parent | 18c1458409fbb4ab3a734bd80673a7726fee107f (diff) |
Make env.RELEASE_RUN the empty string if false
not the string "false", which is true.
-rw-r--r-- | .github/workflows/build.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 07499f768c..47f612f028 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,7 +10,7 @@ on: env: # Build with a tag like "Second_Life#abcdef0" to generate a release page # (used for builds we are planning to deploy). - RELEASE_RUN: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life') && 'Y' }} + RELEASE_RUN: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life') && 'Y' || '' }} jobs: # The whole point of the setvar job is that we want to reference global |