File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -191,21 +191,26 @@ curl http://localhost:9000/health
191191
192192When 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
210215See [ CHANGELOG.md] ( CHANGELOG.md#how-to-release ) for complete release instructions and coach naming convention.
211216
You can’t perform that action at this time.
0 commit comments