spine-runtimes/.github/workflows/spine-godot-v4-all.yml
2025-11-19 17:47:55 +01:00

25 lines
654 B
YAML

name: Build spine-godot (All Godot 4.x versions)
on:
push:
paths:
- ".github/workflows/spine-godot.yml"
- 'spine-godot/**'
- 'spine-cpp/**'
workflow_dispatch:
jobs:
build-versions:
strategy:
matrix:
version:
[
{"tag": "4.5.1-stable", "version": "4.5.1.stable", "mono": false},
{"tag": "4.5.1-stable", "version": "4.5.1.stable", "mono": true}
]
uses: ./.github/workflows/spine-godot-v4.yml
with:
godot_tag: ${{ matrix.version.tag }}
godot_version: ${{ matrix.version.version }}
godot_mono: ${{ matrix.version.mono }}
secrets: inherit