diff --git a/README.md b/README.md index 5179cc08..73360eb3 100644 --- a/README.md +++ b/README.md @@ -380,5 +380,19 @@ yarn version:bump # e.g. yarn version:bump 2.0.0 ``` -It will create a commit and a git tag that will need to be pushed on the main branch. A workflow will be triggered and will -publish the Semaphore packages on [npm](https://www.npmjs.com/) and release a new version on Github with its changelogs automatically. +This step creates a commit and a git tag. + +2. Push the changes to main: + +```bash +git push origin main +``` + +3. Push the new git tag: + +```bash +git push origin +# e.g. git push origin v2.0.0 +``` + +After pushing the new git tag, a workflow will be triggered to publish the Semaphore packages on [npm](https://www.npmjs.com/) and release a new version on GitHub with its changelogs automatically.