원클릭으로
release
Bump version, tag, and trigger release workflow
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Bump version, tag, and trigger release workflow
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
| name | release |
| description | Bump version, tag, and trigger release workflow |
Creates a new release by bumping versions, creating a tag, and triggering CI.
grep '"version"' package.json
Calculate new version based on bump type.
Update version in both files:
package.jsonsrc-tauri/tauri.conf.jsonCommit the version bump:
git add package.json src-tauri/tauri.conf.json
git commit -m "chore: bump version to X.X.X"
git tag vX.X.X
git push origin main --tags
Once the tag is pushed, .github/workflows/release.yml will:
Current version: 0.1.0-alpha.1
Bump type: patch
New version: 0.1.0-alpha.2
✓ Updated package.json
✓ Updated src-tauri/tauri.conf.json
✓ Committed: chore: bump version to 0.1.0-alpha.2
✓ Tagged: v0.1.0-alpha.2
✓ Pushed to main with tags
GitHub Actions is now building the release.
Draft will appear at: https://github.com/skeletor-js/skelenote/releases
Next steps:
1. Wait for builds to complete (~15-20 min)
2. Edit the draft release notes
3. Publish when ready
{
"name": "skelenote",
"version": "0.1.0-alpha.1",
...
}
{
"version": "0.1.0-alpha.1",
...
}
For alpha/beta releases, include the suffix:
0.1.0-alpha.1 → 0.1.0-alpha.20.1.0-beta.3 → 0.1.0-beta.4When ready for stable:
0.1.0-beta.5 → 0.1.0/check before releasing