diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-05-16 15:11:40 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-05-16 15:11:40 -0400 |
commit | 06c37b091f445827b9274a2aec45b9928c6f3081 (patch) | |
tree | 1562af286527a84e063bb57030896b1b632b620e /.github | |
parent | 865125d9da247f8828240060862782020964bf93 (diff) |
Can't reference 'runner' context at job level.
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 542b8762ef..4adda46b5a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,7 +25,7 @@ jobs: configuration: Release runs-on: ${{ matrix.runner }} # Linux build failures shouldn't block the whole project. - continue-on-error: ${{ runner.os == 'Linux' }} + continue-on-error: ${{ matrix.runner == 'linux-large' }} outputs: viewer_channel: ${{ steps.build.outputs.viewer_channel }} viewer_version: ${{ steps.build.outputs.viewer_version }} |