Change folder before build
Some checks failed
Build Game / Export Game Client (push) Failing after 23s
Some checks failed
Build Game / Export Game Client (push) Failing after 23s
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user