spine-godot-v4-all.yml 804 B

123456789101112131415161718192021222324252627
  1. name: Build spine-godot (All Godot 4.x versions)
  2. on:
  3. push:
  4. paths:
  5. - ".github/workflows/spine-godot.yml"
  6. - 'spine-godot/**'
  7. - 'spine-cpp/**'
  8. workflow_dispatch:
  9. jobs:
  10. build-versions:
  11. strategy:
  12. matrix:
  13. version:
  14. [
  15. {"tag": "4.4.1-stable", "version": "4.4.1.stable", "mono": false},
  16. {"tag": "4.4.1-stable", "version": "4.4.1.stable", "mono": true},
  17. {"tag": "4.3-stable", "version": "4.3.stable", "mono": false},
  18. {"tag": "4.3-stable", "version": "4.3.stable", "mono": true},
  19. ]
  20. uses: ./.github/workflows/spine-godot-v4.yml
  21. with:
  22. godot_tag: ${{ matrix.version.tag }}
  23. godot_version: ${{ matrix.version.version }}
  24. godot_mono: ${{ matrix.version.mono }}
  25. secrets: inherit