Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2024-12-31 18:21:12 +1100
committerKae <80987908+Novaenia@users.noreply.github.com>2024-12-31 18:21:12 +1100
commit4f37d900c476df3f31e2382fa5f6038c9f662c8a (patch)
treeecbd5ddd2729be6ab68e18741a7e18302871bdcd /.github
parent95b8727d0ca1bacde2612510acb1aba1fc5248b3 (diff)
get rid of SDL2's dbus dependency
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c7cf799..73aa3be 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -28,7 +28,7 @@ jobs:
build_windows:
name: Build OpenStarbound Windows x64
runs-on: windows-latest
- if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.windows == true) }}
+ if: ${{ (github.event_name == 'workflow_dispatch') && (inputs.windows == true) }}
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -103,7 +103,7 @@ jobs:
build_linux:
name: Build OpenStarbound Linux x86_64
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-20.04
if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.linux == true) }}
env:
CC: clang
@@ -171,7 +171,7 @@ jobs:
build-mac-intel:
name: Build OpenStarbound macOS x86_64
runs-on: macos-13
- if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.macOS == true) }}
+ if: ${{ (github.event_name == 'workflow_dispatch') && (inputs.macOS == true) }}
steps:
- uses: actions/checkout@v4
with:
@@ -213,7 +213,7 @@ jobs:
build-mac-arm:
name: Build OpenStarbound macOS arm64
runs-on: macos-14
- if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.macOS == true) }}
+ if: ${{ (github.event_name == 'workflow_dispatch') && (inputs.macOS == true) }}
steps:
- uses: actions/checkout@v4
with: