mirror of
https://github.com/status-im/safe-react.git
synced 2026-08-30 13:11:15 +00:00
* Update the readme about the release procedure * readme.md -> README.md * Move the release docs
811 B
811 B
Releasing to production
We prepare at least one release every sprint. Sprints are two weeks long.
Prepare a branch
- A code-freeze branch named
release/X.Y.Zis created - A commit that bumps the version in the
package.jsonis made
QA
- The QA team do regression testing on this branch
- If issues are found, bugfixes are merged into this branch
- Once the QA is done, we push the branch to
master - Master is automatically deployed to staging – some extra QA can be done there if needed
Tag & release
- A version tag must be created and pushed.
git tag v3.7.0
git push --tags
- Devops are notified on Slack to deploy the tag to production
- A GitHub release is created
- Master is back-merged into the main
developmentbranch