원클릭으로
release
Walk through shipping a new release of Terrarium
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Walk through shipping a new release of Terrarium
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | release |
| description | Walk through shipping a new release of Terrarium |
Walk me through shipping a new release of Terrarium. For each step, wait for my confirmation before proceeding to the next.
Check for uncommitted changes — run git status and git diff. If there are changes, ask if I want to commit them first.
Determine the version — read the current version from package.json, src-tauri/tauri.conf.json, and src-tauri/Cargo.toml. Show me the current version and ask what the new version should be (patch, minor, or major bump).
Bump the version — update the version in all three files to match. Show me the diff.
Commit the version bump — stage and commit with message Bump version to vX.Y.Z.
Push to master — run git push origin master.
Tag the release — run git tag vX.Y.Z and git push origin vX.Y.Z. This triggers the publish workflow which builds, signs, notarizes, and creates the GitHub release automatically.
Monitor the build — show me the command to watch the workflow: gh run watch. If it fails, help me debug.
Verify the release — run gh release view vX.Y.Z to confirm the assets were uploaded (should include .dmg, .app.tar.gz, .sig, and latest.json).