-
Notifications
You must be signed in to change notification settings - Fork 35
Release Process
Aman Bhardwaj edited this page Aug 20, 2020
·
2 revisions
- Keep master branch in a working state
- Deliver the stable version to user safely
- Create branch
release-<major>.<minor>.patch
frommaster
and push the branch. e.g.release-0.9.0
- Push the branch.
After validating the build, nuget packages can be published to nuget.org.
To publish nuget packages, create and push a tag. (Note: The nuget package version is derived from the tags, so preview releases must have the preview tag. After reaching a stable 1.0 release, -preview01 in the tag is not needed.). eg.
$ git checkout release-0.9.0
$ git tag v0.9.0-preview01
$ git push origin v0.9.0-preview01