com um clique
release
Walk through shipping a new release of Terrarium
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Walk through shipping a new release of Terrarium
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional 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).