-
Notifications
You must be signed in to change notification settings - Fork 2
How to release a new version
Dmitriy Zharikhin edited this page May 21, 2020
·
5 revisions
via "library" on https://release.pyn.ru/
- Merge your branch (or several branches) into
release-candidate:
git checkout release-candidate && git pull --ff-only
git merge --no-ff origin/<JIRA-ID>- Prepare and release the build:
mvn release:prepare
mvn release:perform- Update version in
.hh-release.yamlto that you have just released - Merge
release-candidatebranch into master:
git checkout master && git pull --ff-only
git merge release-candidate
git push origin master