Change folder before build
Some checks failed
Build Game / Export Game Client (push) Failing after 23s

This commit is contained in:
2025-12-04 09:11:53 +01:00
parent 1822b50399
commit 9daef1ce4e

View File

@ -63,14 +63,24 @@ jobs:
- name: Export Windows Client
run: |
mkdir -p build/windows
cd src/
# "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 ..
- name: Export Linux Client
run: |
mkdir -p build/linux
cd src/
# "Linux/X11" must match the name in your export_presets.cfg
./godot_headless --headless --export-release "Linux/X11" build/linux/game.x86_64
cd ..
- name: Upload Artifacts
uses: actions/upload-artifact@v3