Skip to content

Commit 629609a

Browse files
committed
Move step to ci_make_archives scripts
1 parent 48774b3 commit 629609a

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ jobs:
5353
- name: Build Linux proxy release
5454
run: cargo build --release
5555
working-directory: ./noita-proxy
56-
57-
- name: Copy lutris start script to target
58-
run: cp scripts/start-linux.sh target/start-linux.sh
5956

6057
- name: Create archives
6158
run: python scripts/ci_make_archives.py linux

scripts/ci_make_archives.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
with ZipFile("target/noita-proxy-linux.zip", "w") as release:
2424
release.write("noita-proxy/target/release/noita-proxy", arcname="noita_proxy.x86_64", compress_type=COMPRESS_TYPE, compresslevel=COMPRESS_LEVEL)
25+
release.write("scripts/start-lutris.sh", arcname="start-lutris.sh", compress_type=COMPRESS_TYPE, compresslevel=COMPRESS_LEVEL)
2526
release.write("redist/libsteam_api.so", arcname="libsteam_api.so", compress_type=COMPRESS_TYPE, compresslevel=COMPRESS_LEVEL)
2627
elif mode == "macos":
2728
print("Writing macos release...")
File renamed without changes.

0 commit comments

Comments
 (0)