mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
24 lines
590 B
YAML
24 lines
590 B
YAML
name: Build spine-godot GDExtension (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", "dev": false},
|
|
]
|
|
uses: ./.github/workflows/spine-godot-extension-v4.yml
|
|
with:
|
|
godot_tag: ${{ matrix.version.tag }}
|
|
godot_version: ${{ matrix.version.version }}
|
|
dev: ${{ matrix.version.dev }}
|
|
secrets: inherit |