with one click
release
バージョンバンプをmainに直接pushし、CIでAPKビルド+GitHubリリースを自動作成する
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
バージョンバンプをmainに直接pushし、CIでAPKビルド+GitHubリリースを自動作成する
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Auto-evolve the role set based on invocation statistics. Triggered by `/governance auto-run` from the SessionEnd hook, by `/governance dry-run` for inspection, or by `/governance` for interactive review.
Designs a Holacracy Anchor Circle for a Claude Code project and writes the runtime scaffold. Triggered by "build a harness", "set up a harness", "ハーネスを構成して", "ロール構成を設計して".
| name | release |
| description | バージョンバンプをmainに直接pushし、CIでAPKビルド+GitHubリリースを自動作成する |
バージョンをバンプしてmainにpushすることで、GitHub Actions(.github/workflows/release.yml)がAPKビルドとリリース作成を自動実行します。
# 現在のバージョンと最新リリースを確認
node -p "require('./package.json').version"
gh release list --limit 5
# 適切なバージョンに更新 (patch/minor/major)
npm version <new-version> --no-git-tag-version
VERSION=$(node -p "require('./package.json').version")
git add package.json
git commit -m "chore: bump version to ${VERSION}"
git push origin main
pushするとrelease.ymlが自動トリガーされる。
# CIの実行状況を確認・完了まで待機
gh run list --workflow=release.yml --limit 3
gh run watch <run-id>
# 完了後、APKのURLを出力
gh release view --json tagName,assets --jq '"APK: " + .assets[0].url'
CIが実行する内容:
eas.jsonのproductionプロファイルから環境変数をロードv{VERSION}-{SHORT_SHA} タグでGitHub Releaseを作成しAPKを添付