mirror of https://github.com/godotengine/godot
Add `workflow_dispatch` triggers to platform CI.
This commit is contained in:
parent
6fd949a6dc
commit
918fda1b0f
|
|
@ -1,6 +1,7 @@
|
||||||
name: 🤖 Android Builds
|
name: 🤖 Android Builds
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
name: 🍏 iOS Builds
|
name: 🍏 iOS Builds
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
name: 🐧 Linux Builds
|
name: 🐧 Linux Builds
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
name: 🍎 macOS Builds
|
name: 🍎 macOS Builds
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
name: 🔗 GHA
|
name: 🔗 GHA
|
||||||
on: [push, pull_request, merge_group]
|
on: [push, pull_request, merge_group, workflow_dispatch]
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}|${{ github.ref_name }}
|
group: ${{ github.workflow }}|${{ github.ref_name }}
|
||||||
|
|
@ -9,7 +9,7 @@ jobs:
|
||||||
# First stage: Only static checks, fast and prevent expensive builds from running.
|
# First stage: Only static checks, fast and prevent expensive builds from running.
|
||||||
|
|
||||||
static-checks:
|
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
|
name: 📊 Static checks
|
||||||
uses: ./.github/workflows/static_checks.yml
|
uses: ./.github/workflows/static_checks.yml
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
name: 📊 Static Checks
|
name: 📊 Static Checks
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
static-checks:
|
static-checks:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
name: 🌐 Web Builds
|
name: 🌐 Web Builds
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
name: 🏁 Windows Builds
|
name: 🏁 Windows Builds
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue