一键导入
release-process
Cut a locus-tag release via cargo-release; CI handles publishing and the GitHub Release page.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Cut a locus-tag release via cargo-release; CI handles publishing and the GitHub Release page.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | Release Process |
| description | Cut a locus-tag release via cargo-release; CI handles publishing and the GitHub Release page. |
This skill is a quick-reference for the operator. The full procedure —
including OIDC bootstrap, rollback, and the topology of every CI job —
lives in docs/engineering/release-runbook.md.
Read the runbook first when in doubt.
main, tests green.## Unreleased block in CHANGELOG.md contains real entries for
the new version. create-github-release fails if the resulting
notes section is empty.git checkout -b release-vX.Y.Z
# patch (perf / bugfix)
cargo release patch --execute --no-publish \
--allow-branch release-vX.Y.Z --config release.toml
# minor (breaking / structural)
cargo release minor --execute --no-publish \
--allow-branch release-vX.Y.Z --config release.toml
Rename ## Unreleased → ## [X.Y.Z] - YYYY-MM-DD in CHANGELOG.md,
start a fresh empty ## Unreleased block, amend the commit, and push.
gh run watch <release.yml run> — all 8 jobs green.locus-core version./locus-tag/X.Y/ and stable redirects to it.See release-runbook §5 — Rollback.
Both registries permit yank but never re-upload of the same version;
ship the fix under X.Y.Z+1.
Tag with an -rc.N suffix (e.g., v0.5.1-rc.1) to exercise the full
pipeline without touching either registry. See
release-runbook §4 — RC convention.