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,15 +63,25 @@ jobs:
- name: Export Windows Client - name: Export Windows Client
run: | run: |
mkdir -p build/windows mkdir -p build/windows
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 ..
- name: Export Linux Client - name: Export Linux Client
run: | run: |
mkdir -p build/linux mkdir -p build/linux
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 ..
- name: Upload Artifacts - name: Upload Artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with: