Skip to content

Commit

Permalink
ci: 更改 export 路径
Browse files Browse the repository at this point in the history
  • Loading branch information
ligen131 committed Jan 27, 2024
1 parent 2a63782 commit 714dc89
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 @@ -24,7 +24,7 @@ jobs:
- name: Windows Build
run: |
mkdir -v -p build/windows
godot --headless --verbose --export-release "Windows Desktop" ../build/windows/$EXPORT_NAME.exe
godot --headless --verbose --export-release "Windows Desktop" build/windows/$EXPORT_NAME.exe
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Linux Build
run: |
mkdir -v -p build/linux
godot --headless --verbose --export-release "Linux/X11" ../build/linux/$EXPORT_NAME.x86_64
godot --headless --verbose --export-release "Linux/X11" build/linux/$EXPORT_NAME.x86_64
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Web Build
run: |
mkdir -v -p build/web
godot --headless --verbose --export-release "HTML5" ../build/web/index.html
godot --headless --verbose --export-release "HTML5" build/web/index.html
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Mac Build
run: |
mkdir -v -p build/mac
godot --headless --verbose --export-release "Mac OSX" ../build/mac/$EXPORT_NAME.zip
godot --headless --verbose --export-release "Mac OSX" build/mac/$EXPORT_NAME.zip
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand Down

0 comments on commit 714dc89

Please sign in to comment.