docs: add release management procedure to MAINTENANCE.md
This commit is contained in:
@@ -52,3 +52,31 @@ Running the scripts is **MANDATORY** after any change to `skills/`.
|
|||||||
## 5. Agent Artifacts (Internal)
|
## 5. Agent Artifacts (Internal)
|
||||||
|
|
||||||
- [ ] **Walkthrough**: Update `walkthrough.md` in the brain/artifact directory to reflect the session's achievements.
|
- [ ] **Walkthrough**: Update `walkthrough.md` in the brain/artifact directory to reflect the session's achievements.
|
||||||
|
|
||||||
|
## 6. Release Management
|
||||||
|
|
||||||
|
When creating a new version release:
|
||||||
|
|
||||||
|
- [ ] **Tag**: Create an annotated git tag.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git tag -a vX.Y.Z -m "Release X.Y.Z: Title"
|
||||||
|
```
|
||||||
|
|
||||||
|
- [ ] **Push Tag**:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git push origin vX.Y.Z
|
||||||
|
```
|
||||||
|
|
||||||
|
- [ ] **Set Default Repo**: Ensure the `gh` CLI knows the upstream repo (crucial if you have multiple remotes).
|
||||||
|
|
||||||
|
```bash
|
||||||
|
gh repo set-default sickn33/antigravity-awesome-skills
|
||||||
|
```
|
||||||
|
|
||||||
|
- [ ] **Create GitHub Release**: This creates the visible release on GitHub.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
gh release create vX.Y.Z --title "Release X.Y.Z: Title" --generate-notes
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user