Skip to content

Commit 640d89a

Browse files
WIndFateclaude
andcommitted
Fix release: package Windows binary as zip instead of raw exe
Browsers flag direct .exe downloads as risky. Zip the Windows binary the same way we already zip the macOS binary so users download a safe archive and extract it themselves. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ae85de4 commit 640d89a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ jobs:
6464
- name: Package files for release
6565
run: |
6666
cd artifacts/Bili-Streamer-macOS && zip ../Bili-Streamer-macOS.zip Bili-Streamer && cd ../..
67-
mv artifacts/Bili-Streamer-Windows/Bili-Streamer.exe artifacts/Bili-Streamer-Windows.exe
67+
cd artifacts/Bili-Streamer-Windows && zip ../Bili-Streamer-Windows.zip Bili-Streamer.exe && cd ../..
6868
6969
- name: Create GitHub Release
7070
uses: softprops/action-gh-release@v2
7171
with:
7272
generate_release_notes: true
7373
files: |
7474
artifacts/Bili-Streamer-macOS.zip
75-
artifacts/Bili-Streamer-Windows.exe
75+
artifacts/Bili-Streamer-Windows.zip

0 commit comments

Comments
 (0)