Add workflow_dispatch triggers to platform CI.

This commit is contained in:
Lukas Tenbrink
2025-11-09 21:37:44 +01:00
parent 6fd949a6dc
commit 918fda1b0f
8 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,7 @@
name: 🤖 Android Builds
on:
workflow_call:
workflow_dispatch:
# Global Settings
env:

View File

@ -1,6 +1,7 @@
name: 🍏 iOS Builds
on:
workflow_call:
workflow_dispatch:
# Global Settings
env:

View File

@ -1,6 +1,7 @@
name: 🐧 Linux Builds
on:
workflow_call:
workflow_dispatch:
# Global Settings
env:

View File

@ -1,6 +1,7 @@
name: 🍎 macOS Builds
on:
workflow_call:
workflow_dispatch:
# Global Settings
env:

View File

@ -1,5 +1,5 @@
name: 🔗 GHA
on: [push, pull_request, merge_group]
on: [push, pull_request, merge_group, workflow_dispatch]
concurrency:
group: ${{ github.workflow }}|${{ github.ref_name }}
@ -9,7 +9,7 @@ jobs:
# First stage: Only static checks, fast and prevent expensive builds from running.
static-checks:
if: ${{ !vars.DISABLE_GODOT_CI || github.run_attempt > 1 }}
if: ${{ !vars.DISABLE_GODOT_CI || github.run_attempt > 1 || github.event_name == 'workflow_dispatch' }}
name: 📊 Static checks
uses: ./.github/workflows/static_checks.yml

View File

@ -1,6 +1,7 @@
name: 📊 Static Checks
on:
workflow_call:
workflow_dispatch:
jobs:
static-checks:

View File

@ -1,6 +1,7 @@
name: 🌐 Web Builds
on:
workflow_call:
workflow_dispatch:
# Global Settings
env:

View File

@ -1,6 +1,7 @@
name: 🏁 Windows Builds
on:
workflow_call:
workflow_dispatch:
# Global Settings
env: