limboai/.github/workflows/runner.yml

47 lines
1.1 KiB
YAML
Raw Normal View History

name: 🔗 GHA
on:
2023-07-28 14:33:21 +00:00
workflow_dispatch:
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
jobs:
# android-build:
# name: 🤖 Android
# uses: ./.github/workflows/android.yml
# ios-build:
# name: 🍏 iOS
# uses: ./.github/workflows/ios.yml
linux-build:
name: 🐧 Linux
uses: ./.github/workflows/linux.yml
with:
godot_treeish: ${{ inputs.godot_treeish }}
limboai_treeish: ${{ inputs.limboai_treeish }}
2023-07-29 09:27:29 +00:00
macos-build:
name: 🍎 macOS
uses: ./.github/workflows/macos.yml
with:
godot_treeish: ${{ inputs.godot_treeish }}
limboai_treeish: ${{ inputs.limboai_treeish }}
2023-07-28 18:17:48 +00:00
windows-build:
name: 🪟 Windows
uses: ./.github/workflows/windows.yml
with:
godot_treeish: ${{ inputs.godot_treeish }}
limboai_treeish: ${{ inputs.limboai_treeish }}
# web-build:
# name: 🌐 Web
# uses: ./.github/workflows/web.yml