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

summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2025-01-02 21:05:05 +1100
committerGitHub <noreply@github.com>2025-01-02 21:05:05 +1100
commit41f0b9001f60c59691ec04d937e6a9ef424794f1 (patch)
tree123ee8d5a6c146b7dbe30c9ab371047cabd4f188 /.github
parentbbc167de0f1b8c01ddf4caba30408f71999b2960 (diff)
Update build.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f263aa1..8987cd6 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
@@ -180,7 +180,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:
@@ -222,7 +222,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: