Skip to content

Commit c391d02

Browse files
committed
oh my god
1 parent fe50b9e commit c391d02

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

Diff for: .github/workflows/release.yml

+12-9
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
tags: ['*']
66
env:
77
GODOT_VERSION: 4.3
8-
EXPORT_NAME: bited
98
PROJECT_PATH: .
109
jobs:
1110
export-windows:
@@ -31,12 +30,14 @@ jobs:
3130
EXPORT_DIR="$(readlink -f build)"
3231
cd "$PROJECT_PATH"
3332
godot --headless --verbose --export-release "windows" \
34-
"$EXPORT_DIR/windows/$EXPORT_NAME.exe"
33+
"$EXPORT_DIR"/windows/bited.exe
34+
- name: Zip
35+
run: zip bited.zip build/windows
3536
- name: Upload to Release
3637
uses: svenstaro/upload-release-action@v2
3738
with:
38-
file: build/windows/bited.exe
39-
asset_name: bited_$tag.exe
39+
file: bited.zip
40+
asset_name: bited_windows_$tag.zip
4041
export-linux:
4142
name: Linux Export
4243
runs-on: ubuntu-latest
@@ -58,12 +59,14 @@ jobs:
5859
EXPORT_DIR="$(readlink -f build)"
5960
cd "$PROJECT_PATH"
6061
godot --headless --verbose --export-release "linux" \
61-
"$EXPORT_DIR/linux/$EXPORT_NAME.x86_64"
62+
"$EXPORT_DIR/linux/bited.x86_64"
63+
- name: Zip
64+
run: zip bited.zip build/linux
6265
- name: Upload to Release
6366
uses: svenstaro/upload-release-action@v2
6467
with:
65-
file: build/linux/bited.x86_64
66-
asset_name: bited_$tag.x86_64
68+
file: bited.zip
69+
asset_name: bited_linux_$tag.zip
6770
export-mac:
6871
name: Mac Export
6972
runs-on: ubuntu-latest
@@ -85,9 +88,9 @@ jobs:
8588
EXPORT_DIR="$(readlink -f build)"
8689
cd "$PROJECT_PATH"
8790
godot --headless --verbose --export-release "mac" \
88-
"$EXPORT_DIR/mac/$EXPORT_NAME.zip"
91+
"$EXPORT_DIR/mac/bited.zip"
8992
- name: Upload to Release
9093
uses: svenstaro/upload-release-action@v2
9194
with:
9295
file: build/mac/bited.zip
93-
asset_name: bited_$tag.zip
96+
asset_name: bited_mac_$tag.zip

0 commit comments

Comments
 (0)