-
Notifications
You must be signed in to change notification settings - Fork 361
Release Process
Aman Bhardwaj edited this page Aug 7, 2020
·
8 revisions
- Keep master branch in a working state
- Deliver the stable version to user safely
- Update the nuget package version (NupkgMajorVersion, NupkgMinorVersion, NupkgPatchVersion, NupkgPreviewTag) in properties/dapr_common.properties file to match the release version.
- Create branch
release-<major>.<minor>.patch
frommaster
and push the branch. e.g.release-0.9.0-preview01
- Push the branch. It will kick off a build in github actions.
After validating the build, nuget packages can be published to nuget.org.
To publish nuget packages, create and push a tag for the release branch. eg.
$ git tag v-0.9.0-preview01
$ git push origin v-0.9.0-preview01