ci(release): use system zip now that it's installed on the runner

This commit is contained in:
2026-04-15 06:33:50 +00:00
parent aea09098e6
commit 7119c8474e

View File

@@ -95,8 +95,7 @@ jobs:
cp -r out/app bundle/app
cp -r out/worker bundle/worker
ZIP_NAME="ClaudeDo-${VERSION}-win-x64.zip"
# python's zipfile module is used because `zip` is not installed on the host runner
( cd bundle && python3 -m zipfile -c "../assets/${ZIP_NAME}" app worker )
( cd bundle && zip -r -q "../assets/${ZIP_NAME}" app worker )
# 2) Installer single-file exe (renamed)
INSTALLER_EXE=$(ls out/installer/*.exe | head -n 1)