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 ba90e3f59b
commit 56dd47d868
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

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.