Skip to content

Commit

Permalink
Merge pull request #99 from Microwonk/main
Browse files Browse the repository at this point in the history
fix dispatch-export.yml to include --export-release instead of --export
  • Loading branch information
davcri authored Feb 29, 2024
2 parents d0b2505 + b3d5b25 commit a982702
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dispatch-export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: |
cd ${EXPORT_FOLDER}
mkdir -v -p build/windows
godot -v --export "Windows Desktop" ./build/windows/$EXPORT_NAME.exe
godot -v --export-release "Windows Desktop" ./build/windows/$EXPORT_NAME.exe
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
run: |
cd ${EXPORT_FOLDER}
mkdir -v -p build/linux
godot -v --export "Linux/X11" ./build/linux/$EXPORT_NAME.x86_64
godot -v --export-release "Linux/X11" ./build/linux/$EXPORT_NAME.x86_64
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
run: |
cd ${EXPORT_FOLDER}
mkdir -v -p build/web
godot -v --export "HTML5" ./build/web/index.html
godot -v --export-release "HTML5" ./build/web/index.html
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
run: |
cd ${EXPORT_FOLDER}
mkdir -v -p build/mac
godot -v --export "Mac OSX" ./build/mac/$EXPORT_NAME.zip
godot -v --export-release "Mac OSX" ./build/mac/$EXPORT_NAME.zip
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand Down

0 comments on commit a982702

Please sign in to comment.