deploy-to-publish
스타11
포크0
업데이트2026년 3월 21일 03:05
Bumps the git tag using semantic-version rules before publishing
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Bumps the git tag using semantic-version rules before publishing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | deploy-to-publish |
| description | Bumps the git tag using semantic-version rules before publishing |
Use this skill whenever you need to publish a new build and the version tag must be incremented (always prefixed with v, e.g. v1.0.0).
patch (default), minor, or major.git fetch --tagsv0.0.0 if none exist):
git describe --tags --abbrev=0v and parse the remainder into MAJOR.MINOR.PATCH numbers.version field in package.json to match the new MAJOR.MINOR.PATCH value.package.json was modified, commit and push the changes:
git add package.jsongit commit -m "chore: bump version to <newVersion>"git push originbumpType, update the numbers:
patch (or unspecified): increment PATCH only, e.g. 1.0.10 -> 1.0.11.minor: increment MINOR, reset PATCH to 0, e.g. 1.2.5 -> 1.3.0.major: increment MAJOR, reset MINOR and PATCH to 0, e.g. 1.2.5 -> 2.0.0.vMAJOR.MINOR.PATCH):
git tag v<newVersion>git push origin v<newVersion>