بنقرة واحدة
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