-
Notifications
You must be signed in to change notification settings - Fork 1
Release a new version
Simon Wacker edited this page Mar 2, 2022
·
1 revision
- Navigate to the Actions tab.
-
Draft a new release with a new version according to Semantic Versioning by running the GitHub action which, in particular, creates a new branch named
release/v*.*.*
, where*.*.*
is the version, and a corresponding pull request. - Fetch the release branch by running
git fetch
and check it out by runninggit checkout release/v*.*.*
, where*.*.*
is the version. - Prepare the release, in particular, clean the change-log up and add new placeholders for the release to come after this one, add, commit, and push the changes.
-
Publish the new release by merging the release branch into
main
whereby a new pull request frommain
intodevelop
is created that you need to merge to finish off.