This commit is contained in:
@ -60,6 +60,14 @@ jobs:
|
|||||||
# Verify files are where Godot expects them
|
# Verify files are where Godot expects them
|
||||||
ls -l "$TEMPLATE_DIR"
|
ls -l "$TEMPLATE_DIR"
|
||||||
|
|
||||||
|
- name: Debug Version
|
||||||
|
run: |
|
||||||
|
echo "Editor reports version:"
|
||||||
|
./godot_headless.exe --version
|
||||||
|
|
||||||
|
echo "Templates installed at:"
|
||||||
|
ls -R $HOME/.local/share/godot/export_templates/
|
||||||
|
|
||||||
- name: Export Windows Client
|
- name: Export Windows Client
|
||||||
run: |
|
run: |
|
||||||
mkdir -p build/windows
|
mkdir -p build/windows
|
||||||
@ -67,7 +75,7 @@ jobs:
|
|||||||
cd src/
|
cd src/
|
||||||
|
|
||||||
# "Windows Desktop" must match the name in your export_presets.cfg
|
# "Windows Desktop" must match the name in your export_presets.cfg
|
||||||
../godot_headless --headless --export-release "Windows Desktop" build/windows/game.exe
|
../godot_headless --headless --export-release "Windows Desktop" ../build/windows/game.exe
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
@ -78,7 +86,7 @@ jobs:
|
|||||||
cd src/
|
cd src/
|
||||||
|
|
||||||
# "Linux/X11" must match the name in your export_presets.cfg
|
# "Linux/X11" must match the name in your export_presets.cfg
|
||||||
./godot_headless --headless --export-release "Linux/X11" build/linux/game.x86_64
|
./godot_headless --headless --export-release "Linux/X11" ../build/linux/game.x86_64
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user