← スキル一覧に戻る

release-beta
by carrotwaxr
Modern video streaming app with adaptive transcoding for Stash media server
⭐ 20🍴 4📅 2026年1月23日
SKILL.md
name: release-beta description: Release a new beta version - bumps versions in both package.json files, commits, tags, and pushes
Release Beta Version
Version Convention
Beta versions follow this pattern: X.Y.Z-beta.N
- Increment beta number (e.g.,
3.2.2-beta.3→3.2.2-beta.4) - For new minor/patch, reset to beta.1 (e.g.,
3.2.2-beta.3→3.2.3-beta.1)
Pre-Flight Checks
- Ensure you're on
mainbranch and it's up to date - Check current version: look at
client/package.jsonversion field - Determine next version based on convention above
Release Steps
Step 1: Update Versions
Edit BOTH files to the SAME new version:
client/package.json- update"version"fieldserver/package.json- update"version"field
CRITICAL: Both files must have identical version strings.
Step 2: Commit
git add client/package.json server/package.json
git commit -m "chore: bump version to X.Y.Z-beta.N"
Step 3: Push to Main
git push origin main
Step 4: Create and Push Tag
The tag MUST match the version with a v prefix:
git tag vX.Y.Z-beta.N
git push origin vX.Y.Z-beta.N
Example: Version 3.2.3-beta.1 → Tag v3.2.3-beta.1
Common Mistakes to Avoid
- ❌ Forgetting to update one of the package.json files
- ❌ Tag doesn't match version (missing
vprefix or typo) - ❌ Pushing tag before pushing commit
- ❌ Creating tag on wrong branch
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です