Skip to content

Commit a982702

Browse files
authored
Merge pull request crystal-bit#99 from Microwonk/main
fix dispatch-export.yml to include --export-release instead of --export
2 parents d0b2505 + b3d5b25 commit a982702

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dispatch-export.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
cd ${EXPORT_FOLDER}
5050
mkdir -v -p build/windows
51-
godot -v --export "Windows Desktop" ./build/windows/$EXPORT_NAME.exe
51+
godot -v --export-release "Windows Desktop" ./build/windows/$EXPORT_NAME.exe
5252
- name: Upload Artifact
5353
uses: actions/upload-artifact@v1
5454
with:
@@ -83,7 +83,7 @@ jobs:
8383
run: |
8484
cd ${EXPORT_FOLDER}
8585
mkdir -v -p build/linux
86-
godot -v --export "Linux/X11" ./build/linux/$EXPORT_NAME.x86_64
86+
godot -v --export-release "Linux/X11" ./build/linux/$EXPORT_NAME.x86_64
8787
- name: Upload Artifact
8888
uses: actions/upload-artifact@v1
8989
with:
@@ -118,7 +118,7 @@ jobs:
118118
run: |
119119
cd ${EXPORT_FOLDER}
120120
mkdir -v -p build/web
121-
godot -v --export "HTML5" ./build/web/index.html
121+
godot -v --export-release "HTML5" ./build/web/index.html
122122
- name: Upload Artifact
123123
uses: actions/upload-artifact@v1
124124
with:
@@ -162,7 +162,7 @@ jobs:
162162
run: |
163163
cd ${EXPORT_FOLDER}
164164
mkdir -v -p build/mac
165-
godot -v --export "Mac OSX" ./build/mac/$EXPORT_NAME.zip
165+
godot -v --export-release "Mac OSX" ./build/mac/$EXPORT_NAME.zip
166166
- name: Upload Artifact
167167
uses: actions/upload-artifact@v1
168168
with:

0 commit comments

Comments
 (0)