Skip to content

Commit

Permalink
fix(export): fix export path
Browse files Browse the repository at this point in the history
  • Loading branch information
enzoritto committed Oct 1, 2024
1 parent 23979a3 commit 71a1611
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on: push
env:
GODOT_VERSION: 4.3
EXPORT_NAME: zombie-dash
PROJECT_PATH: .

jobs:
export-windows:
Expand All @@ -24,8 +23,7 @@ jobs:
- name: Windows Build
run: |
mkdir -v -p build/windows
cd $PROJECT_PATH
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/[email protected]
with:
Expand All @@ -49,8 +47,7 @@ jobs:
- name: Linux Build
run: |
mkdir -v -p build/linux
cd $PROJECT_PATH
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/[email protected]
with:
Expand All @@ -74,8 +71,7 @@ jobs:
- name: Web Build
run: |
mkdir -v -p build/web
cd $PROJECT_PATH
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/[email protected]
with:
Expand Down Expand Up @@ -107,8 +103,7 @@ jobs:
- name: Mac Build
run: |
mkdir -v -p build/mac
cd $PROJECT_PATH
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/[email protected]
with:
Expand Down

0 comments on commit 71a1611

Please sign in to comment.