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.