Extend release process with the need of merging back release branch to master (#2573)

This commit is contained in:
NagyZoltanPeter 2024-04-09 05:47:03 +02:00 committed by GitHub
parent 7a8b86c01d
commit 3043bd8155

View File

@ -57,11 +57,15 @@ Ensure all items in this list are ticked:
```
1. Once the release-candidate has been validated, create a final release tag and push it.
We also need to merge release branch back to master as a final step.
```
git checkout release/v0.1.0
git tag -as v0.1.0 -m "Initial release."
git push origin v0.1.0
git switch master
git pull
git merge release/v0.1.0
```
1. Create a [Github release](https://github.com/waku-org/nwaku/releases) from the release tag.