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.