2023-07-31 09:21:12 +00:00
|
|
|
name: 🔗 All Builds
|
2023-07-28 12:53:10 +00:00
|
|
|
on:
|
2023-07-28 14:33:21 +00:00
|
|
|
workflow_dispatch:
|
2023-07-29 21:16:10 +00:00
|
|
|
inputs:
|
|
|
|
godot_treeish:
|
|
|
|
description: A tag, branch or commit hash in the Godot repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
|
|
|
limboai_treeish:
|
|
|
|
description: A tag, branch or commit hash in the LimboAI repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2023-07-28 12:53:10 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-08-01 15:33:18 +00:00
|
|
|
android-build:
|
|
|
|
name: 🤖 Android
|
|
|
|
uses: ./.github/workflows/android.yml
|
|
|
|
with:
|
|
|
|
godot_treeish: ${{ inputs.godot_treeish }}
|
|
|
|
limboai_treeish: ${{ inputs.limboai_treeish }}
|
2023-07-28 12:53:10 +00:00
|
|
|
|
2023-08-01 15:33:18 +00:00
|
|
|
ios-build:
|
|
|
|
name: 🍏 iOS
|
|
|
|
uses: ./.github/workflows/ios.yml
|
|
|
|
with:
|
|
|
|
godot_treeish: ${{ inputs.godot_treeish }}
|
|
|
|
limboai_treeish: ${{ inputs.limboai_treeish }}
|
2023-07-28 12:53:10 +00:00
|
|
|
|
|
|
|
linux-build:
|
|
|
|
name: 🐧 Linux
|
|
|
|
uses: ./.github/workflows/linux.yml
|
2023-07-29 21:16:10 +00:00
|
|
|
with:
|
|
|
|
godot_treeish: ${{ inputs.godot_treeish }}
|
|
|
|
limboai_treeish: ${{ inputs.limboai_treeish }}
|
2023-07-28 12:53:10 +00:00
|
|
|
|
2023-07-29 09:27:29 +00:00
|
|
|
macos-build:
|
|
|
|
name: 🍎 macOS
|
|
|
|
uses: ./.github/workflows/macos.yml
|
2023-07-29 21:16:10 +00:00
|
|
|
with:
|
|
|
|
godot_treeish: ${{ inputs.godot_treeish }}
|
|
|
|
limboai_treeish: ${{ inputs.limboai_treeish }}
|
2023-07-28 12:53:10 +00:00
|
|
|
|
2023-07-28 18:17:48 +00:00
|
|
|
windows-build:
|
|
|
|
name: 🪟 Windows
|
|
|
|
uses: ./.github/workflows/windows.yml
|
2023-07-29 21:16:10 +00:00
|
|
|
with:
|
|
|
|
godot_treeish: ${{ inputs.godot_treeish }}
|
|
|
|
limboai_treeish: ${{ inputs.limboai_treeish }}
|
2023-07-28 12:53:10 +00:00
|
|
|
|
2023-07-31 09:21:12 +00:00
|
|
|
web-build:
|
|
|
|
name: 🌐 Web
|
|
|
|
uses: ./.github/workflows/web.yml
|
|
|
|
with:
|
|
|
|
godot_treeish: ${{ inputs.godot_treeish }}
|
|
|
|
limboai_treeish: ${{ inputs.limboai_treeish }}
|