Skip to content

Commit 7fa109c

Browse files
committed
docs: adjust inconsistency in AGENTS.md release workflow
1 parent 032c8c1 commit 7fa109c

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

AGENTS.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,21 +191,26 @@ curl http://localhost:9000/health
191191

192192
When ready to release:
193193

194-
1. **Update CHANGELOG.md**: Move items from `[Unreleased]` to a new versioned section:
194+
1. **Update CHANGELOG.md**: Move items from `[Unreleased]` to a new versioned section, then commit and push:
195195

196196
```markdown
197197
## [1.1.0 - bielsa] - 2026-02-15
198198
```
199199

200-
2. **Commit and push** CHANGELOG changes
201-
3. **Create and push tag**:
200+
```bash
201+
git add CHANGELOG.md
202+
git commit -m "docs: prepare changelog for v1.1.0-bielsa release"
203+
git push
204+
```
205+
206+
2. **Create and push tag**:
202207

203208
```bash
204209
git tag -a v1.1.0-bielsa -m "Release 1.1.0 - Bielsa"
205210
git push origin v1.1.0-bielsa
206211
```
207212

208-
4. **CD workflow runs automatically** to publish Docker images and create GitHub Release
213+
3. **CD workflow runs automatically** to publish Docker images and create GitHub Release
209214

210215
See [CHANGELOG.md](CHANGELOG.md#how-to-release) for complete release instructions and coach naming convention.
211216

0 commit comments

Comments
 (0)