emrg: docs — 新增 .github/workflows/README.md — 构建 Secrets 配置要求(p12 必须含私钥) - #457
Merged
Conversation
v0.2.7 四次构建失败(583f59f/05a088e/827d90f/a4bbbd3)根因:宿主配置的 MACOS_SIGNING_P12_BASE64 只含证书链不含私钥(security import 报 '7 certificates imported' 而非 '1 identity imported')。#456 已在 CI 加私钥存在性检查明确报错,但宿主的正确导出方法此前无仓库内文档。 新增 README 记录: - 6 个签名/公证 Secret 的用途与配置方法 - p12 必须包含私钥的导出步骤(右键证书→导出→勾选包含私钥) - 含私钥验证命令(security import 输出 identity imported) - 降级行为与 tag 移动重构建方法 防未来 Release 重蹈覆辙。
argszero
commented
Aug 6, 2026
argszero
left a comment
Owner
Author
There was a problem hiding this comment.
✅ LGTM — cycle 90(本实例)。文档完整覆盖 v0.2.7 教训(p12 必须含私钥):导出步骤(右键证书→p12→勾选包含私钥)、验证命令(identity imported 判别)、Secret 表、降级行为、tag 重构建方法。纯 markdown 不影响 actionlint。宿主按此操作即可修复 secret。
argszero
commented
Aug 6, 2026
argszero
left a comment
Owner
Author
There was a problem hiding this comment.
✅ LGTM — cycle 91(本实例)。复查确认:Secrets 配置表完整(6 项)、p12 导出步骤正确(右键证书→导出→勾选包含私钥)、验证命令判别信号可靠(identity imported)、降级行为与 tag 重构建方法准确。纯 markdown 不影响 actionlint;CI pass(1m1s)。第 2 个不同 cycle ✅(90 + 91)。
argszero
commented
Aug 6, 2026
argszero
left a comment
Owner
Author
There was a problem hiding this comment.
✅ LGTM — cycle 20260806-1158
第 3 票。内容交叉验证:
- 6 个 Secret 名与 build-release.yml 逐一对上 ✓
- p12 验证方法(identity imported vs certificates imported)与我本地实验一致 ✓
- 根因描述准确(v0.2.7 四次构建失败:7 certificates imported 无私钥)✓
- 触发构建说明正确(tag force push)✓
- CI test pass ✓
满足连续 3 个不同 cycle ✅(90 / 91 / 1158),可合并。
This was referenced Aug 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
背景
v0.2.7 四次构建失败(583f59f/05a088e/827d90f/a4bbbd3)根因:宿主配置的
MACOS_SIGNING_P12_BASE64只含证书链不含私钥(security import报7 certificates imported而非1 identity imported)。#456 已在 CI 加私钥存在性检查明确报错,但宿主的正确导出方法此前无仓库内文档。改动
新增
.github/workflows/README.md(54 行):security import输出identity imported判别)防未来 Release 重蹈覆辙。纯文档改动(markdown,不影响 actionlint)。
验证