From c9bf581ad906f95ae4f0fd206d922eacd7f7c19c Mon Sep 17 00:00:00 2001
From: Bastien DUMONT <bdumont@grandlyon.com>
Date: Thu, 6 Apr 2023 15:09:31 +0200
Subject: [PATCH] update release.md

---
 docs/ecolyo/technical/release.md | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/docs/ecolyo/technical/release.md b/docs/ecolyo/technical/release.md
index e523b69..8ed1295 100644
--- a/docs/ecolyo/technical/release.md
+++ b/docs/ecolyo/technical/release.md
@@ -13,16 +13,19 @@ Make sure that:
 - you are on the right branch (dev or master)
 - your branch is up to date
 - you node modules are up to date
+- the prod build is successful
 
 ## Bump versions, Tag and create changelog
 
 ### manifest.webapp
 
-Checkout on the branch `dev` and bump the version number in `manifest.webapp`. Use a similar commit : _"bump manifest to X.Y.Z"_
+Checkout on the branch `dev` and bump the version number in `manifest.webapp`.
 
-!!! warning
+!!! warning "Commit but don't push"
 
-    Commit but don't push so pipelines are not yet triggered.
+    So pipelines are not yet triggered.
+
+    Use a message such as _"bump manifest to X.Y.Z"_
 
     You don't have to change the version inside `package.json`, standard-version will do it.
 
@@ -40,9 +43,9 @@ yarn release 2.X.Y
 yarn standard-version 2.X.Y
 ```
 
-:warning: Do not push with VS Code
+:warning: Do not push with VS Code :warning:
 
-The script will give you a command to push tags on the remote. (something like this, depending on the branch)
+The script will give you a command to push tags on the remote (depending on the branch).
 
 ```sh
 git push --follow-tags origin dev
@@ -85,11 +88,11 @@ After pushing your tag, the pipelines should be triggered.
 
 Verify that the **build** branch is up to date [Repository > Branches](https://forge.grandlyon.com/web-et-numerique/factory/llle_project/ecolyo/-/branches)
 
-!!! note "Manually push build"
+!!! note "You can also push the build manually"
 
     ```sh
     yarn build:browser
-    yarn deploy #prod config
+    yarn deploy
     ```
 
 ## Publish build branch to Cozy
@@ -110,7 +113,9 @@ yarn cozy-app-publish \
 --space $COZY_SPACE
 ```
 
-More information at [cozy-app-publish](https://docs.cozy.io/en/cozy-app-publish/#manual-usage-not-recommended)
+You can now ping cozy so they ship the version.
+
+More information at [cozy-app-publish](https://docs.cozy.io/en/cozy-app-publish/#manual-usage-not-recommended).
 
 ## Update master
 
-- 
GitLab