From 5ad12894195217a09a012299995f24bfc2b9976c Mon Sep 17 00:00:00 2001 From: wangjia <809946525@qq.com> Date: Tue, 9 Jun 2026 09:35:01 +0800 Subject: [PATCH] chore: release v1.0.28 Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 5 +++++ scripts/ci/compile-macos.sh | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d90a2b8..055c132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.28] - 2026-06-09 + +### 修复 +- macOS 客户端打包脚本路径错误导致 CI 打包失败,修正后 macOS 安装包可正常构建并发布 + ## [1.0.27] - 2026-06-09 ### 改进 diff --git a/scripts/ci/compile-macos.sh b/scripts/ci/compile-macos.sh index e96aff3..0441743 100755 --- a/scripts/ci/compile-macos.sh +++ b/scripts/ci/compile-macos.sh @@ -25,7 +25,7 @@ cd .. # ditto preserves symlinks, Unix permissions, and extended attributes (code-signing). # Python's zipfile follows symlinks and drops permissions — do NOT use it for .app bundles. mkdir -p dist -APP_SRC="client/build/macos/Build/Products/Release/jiu.app" +APP_SRC="client/build/macos/Build/Products/Release/jiu_client.app" ditto -c -k --keepParent "${APP_SRC}" dist/jiu-macos-x64.zip echo "Packaged dist/jiu-macos-x64.zip ($(du -sh dist/jiu-macos-x64.zip | cut -f1))"