forked from Mirantis/cri-dockerd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document the existing release steps (Mirantis#207)
- Loading branch information
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.idea | ||
cri-dockerd | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Release | ||
|
||
This document covers the release process for `cri-dockerd`. This steps will need to be done by a project maintainer. | ||
|
||
1. Setup the repo for a new release | ||
a. Change the version found in `VERSION`, `cmd/version/version.go`, and `packaging/common.mk` to the new version | ||
b. Create a PR with these changes and merge them to master | ||
c. Build the release artifacts using `make release` | ||
d. Verify the artifacts in the `build/release` directory and make sure they look correct | ||
2. A maintainer creates a new draft release in the [repo's releases section](https://github.com/Mirantis/cri-dockerd/releases) | ||
a. The name should follow semantic convention prepended with a 'v' | ||
b. A tag with the same name should be created on the latest commit to master from the previous step | ||
c. Release notes should be generated using the previous tag and the new tag as the range | ||
d. Check the box to **Set as a pre-release** | ||
e. Upload the release artifacts from the previous step | ||
e. Save as a draft | ||
3. The release can now go through a review process to look for any issues | ||
4. Change the draft to a published release | ||
5. Celebrate :beers: |