mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 13:49:54 +00:00
Add workflow_dispatch triggers to platform CI.
This commit is contained in:
parent
6fd949a6dc
commit
918fda1b0f
8 changed files with 9 additions and 2 deletions
1
.github/workflows/android_builds.yml
vendored
1
.github/workflows/android_builds.yml
vendored
|
|
@ -1,6 +1,7 @@
|
|||
name: π€ Android Builds
|
||||
on:
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
# Global Settings
|
||||
env:
|
||||
|
|
|
|||
1
.github/workflows/ios_builds.yml
vendored
1
.github/workflows/ios_builds.yml
vendored
|
|
@ -1,6 +1,7 @@
|
|||
name: π iOS Builds
|
||||
on:
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
# Global Settings
|
||||
env:
|
||||
|
|
|
|||
1
.github/workflows/linux_builds.yml
vendored
1
.github/workflows/linux_builds.yml
vendored
|
|
@ -1,6 +1,7 @@
|
|||
name: π§ Linux Builds
|
||||
on:
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
# Global Settings
|
||||
env:
|
||||
|
|
|
|||
1
.github/workflows/macos_builds.yml
vendored
1
.github/workflows/macos_builds.yml
vendored
|
|
@ -1,6 +1,7 @@
|
|||
name: π macOS Builds
|
||||
on:
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
# Global Settings
|
||||
env:
|
||||
|
|
|
|||
4
.github/workflows/runner.yml
vendored
4
.github/workflows/runner.yml
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
1
.github/workflows/static_checks.yml
vendored
1
.github/workflows/static_checks.yml
vendored
|
|
@ -1,6 +1,7 @@
|
|||
name: π Static Checks
|
||||
on:
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
static-checks:
|
||||
|
|
|
|||
1
.github/workflows/web_builds.yml
vendored
1
.github/workflows/web_builds.yml
vendored
|
|
@ -1,6 +1,7 @@
|
|||
name: π Web Builds
|
||||
on:
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
# Global Settings
|
||||
env:
|
||||
|
|
|
|||
1
.github/workflows/windows_builds.yml
vendored
1
.github/workflows/windows_builds.yml
vendored
|
|
@ -1,6 +1,7 @@
|
|||
name: π Windows Builds
|
||||
on:
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
# Global Settings
|
||||
env:
|
||||
|
|
|
|||
Loadingβ¦
Add table
Add a link
Reference in a new issue