diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-08-31 17:28:25 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-08-31 17:28:25 -0400 |
commit | 3147b55cecb5fc8a0de71cee09b0e12b66b75a40 (patch) | |
tree | 6550494f2a6ea675dd3f4986f22d02b35daccf47 /.github | |
parent | 348d7107070defa996b870691df23570694f1713 (diff) |
SL-19243: Fix wonky 'if:' in build.yaml
Diffstat (limited to '.github')
-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 a6a8b49d26..526ac6999f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -213,10 +213,10 @@ jobs: ${{ steps.build.outputs.installer }} - name: Upload executable + if: steps.build.outputs.viewer_exe uses: actions/upload-artifact@v3 with: name: "${{ steps.build.outputs.artifact }}-exe" - if: steps.build.outputs.viewer_exe path: ${{ steps.build.outputs.viewer_exe }} # The other upload of nontrivial size is the symbol file. Use a distinct |