create-release
星标3
分支1
更新时间2026年2月25日 01:42
Standard process for creating a new release of tailrelay-startos.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Standard process for creating a new release of tailrelay-startos.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | create-release |
| description | Standard process for creating a new release of tailrelay-startos. |
This skill documents the exact step-by-step process for creating a new release for the tailrelay-startos project. The user or an agent should follow these instructions to ensure releases are created uniformly.
Identify the New Version Number
v0.5.0) based on the changes being released.Update Versions
version: field in manifest.yaml to the new version without the v prefix (e.g., version: 0.5.0).FROM image tag in the Dockerfile to use the new upstream image version with the v prefix (e.g., FROM sudocarlos/tailrelay:v0.5.0).Commit the Changes
manifest.yaml (and any other release-related files like CHANGELOG.md if applicable).chore(release): vX.Y.Z (e.g., chore(release): v0.5.0).Tag the Release
git tag vX.Y.Z (e.g., git tag v0.5.0).Push and Trigger Actions
git push origin main.git push origin vX.Y.Z..github/workflows/releaseService.yml action is triggered. This action automatically builds the .s9pk packages for arm64 and amd64, generates checksums and a summary from the manifest release-notes, and publishes the GitHub release.