diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2024-05-16 16:05:43 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2024-05-16 16:05:43 -0400 | 
| commit | 3c0710172e03329004a2962e0313d883b143d3ad (patch) | |
| tree | 7d4352aaecc3f3916c80cb03b8a403a6f923a3e1 | |
| parent | f10ec3073cde4810fe01753c1e5b82cb8591a1cb (diff) | |
Try to fix release_run logic in build.yaml.
| -rw-r--r-- | .github/workflows/build.yaml | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b60f787a9c..b301e88f48 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -27,7 +27,7 @@ jobs:        # When you want to use a string variable as a workflow YAML boolean, it's        # important to ensure it's the empty string when false. If you omit || '',        # its value when false is "false", which is interpreted as true. -      RELEASE_RUN: ${{ (github.event.inputs.release_run || github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life')) && 'Y' || '' }} +      RELEASE_RUN: ${{ (github.event.inputs.release_run || (github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life'))) && 'Y' || '' }}      steps:        - name: Set Variable          id: setvar @@ -403,7 +403,11 @@ jobs:    release:      needs: [setvar, build, sign-and-package-windows, sign-and-package-mac]      runs-on: ubuntu-latest -    if: needs.setvar.outputs.release_run +    # action-gh-release requires a tag (presumably for automatic generation of +    # release notes). Possible TODO: if we arrive here but do not have a +    # suitable tag for github.sha, create one? If we do that, of course remove +    # this == 'tag' condition. +    if: needs.setvar.outputs.release_run && github.ref_type == 'tag'      steps:        - uses: actions/download-artifact@v4          with:  | 
