15 lines
569 B
YAML
15 lines
569 B
YAML
name: Verify Export Config
|
|
on: workflow_dispatch
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Download export templates (cached)
|
|
run: |
|
|
mkdir -p .godot/export_templates
|
|
wget -qO- https://github.com/godotengine/godot/releases/download/4.3-stable/Godot_v4.3-stable_export_templates.tpz \
|
|
| tar xzf - -C .godot/export_templates --strip-components=1
|
|
- name: Validate project compiles cleanly
|
|
run: godot --headless --quit-after-editor-checks 2>&1 | tee editor.log
|