Skip to content

Commit

Permalink
ci: 设置导出选项为 debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ligen131 committed Feb 14, 2024
1 parent 9bcb23f commit 7b31f2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/godot-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Windows Build
run: |
mkdir -v -p build/windows
godot --headless --verbose --export "Windows Desktop" build/windows/$EXPORT_NAME.exe
godot --headless --verbose --export-debug "Windows Desktop" build/windows/$EXPORT_NAME.exe
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Linux Build
run: |
mkdir -v -p build/linux
godot --headless --verbose --export "Linux/X11" build/linux/$EXPORT_NAME.x86_64
godot --headless --verbose --export-debug "Linux/X11" build/linux/$EXPORT_NAME.x86_64
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand All @@ -74,7 +74,7 @@ jobs:
- name: Web Build
run: |
mkdir -v -p build/web
godot --headless --verbose --export "Web" build/web/index.html
godot --headless --verbose --export-debug "Web" build/web/index.html
- name: Install rsync 📚
run: |
apt-get update && apt-get install -y rsync curl
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Mac Build
run: |
mkdir -v -p build/mac
godot --headless --verbose --export "mac" build/mac/$EXPORT_NAME.zip
godot --headless --verbose --export-debug "mac" build/mac/$EXPORT_NAME.zip
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand Down

0 comments on commit 7b31f2e

Please sign in to comment.