diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-06-06 14:31:11 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-06-06 14:31:11 +1000 |
commit | 214c8c939f377abed795cf6d66929e3a07c6820c (patch) | |
tree | b376547bc79c155655d5c33af48da4cf0abef291 /.github/workflows/build.yml | |
parent | 8bccbc78ed0895ca21b5b881794f1249f3467bae (diff) |
Update build.yml
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b2d90fe..cdacd40 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -133,7 +133,7 @@ jobs: build_linux: name: Build OpenStarbound Linux x86_64 runs-on: ubuntu-22.04 - if: ${{ (github.event_name != 'pull_request') || (inputs.linux == true) }} + if: ${{ (github.event_name != 'pull_request') && (inputs.linux == true) }} env: VCPKG_BINARY_SOURCES: clear;files,${{ github.workspace }}/vcpkg_cache,readwrite steps: @@ -220,7 +220,7 @@ jobs: build_linux_clang: name: Build OpenStarbound Linux Clang x86_64 runs-on: ubuntu-22.04 - if: ${{ (github.event_name != 'workflow_dispatch') && (inputs.linux_clang == true) }} + if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.linux_clang == true) }} env: CC: clang CXX: clang++ |