You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Kubernetes Template Project is released on an as-needed basis. The process is as follows:
3
+
The Kubernetes C Client Project is released on an as-needed basis. The process is as follows:
4
4
5
5
1. An issue is proposing a new release with a changelog since the last release
6
6
1. All [OWNERS](OWNERS) must LGTM this release
7
-
1. An OWNER runs `git tag -s $VERSION` and inserts the changelog and pushes the tag with `git push $VERSION`
7
+
1. An OWNER runs `git tag -s $VERSION` or `git tag -a $VERSION` (If GPG-signed tag is not required) and inserts the changelog and pushes the tag with `git push $VERSION`
8
+
9
+
e.g
10
+
```shell
11
+
git tag -a v0.1.0 -m "version 0.1.0"
12
+
```
13
+
8
14
1. The release issue is closed
9
15
1. An announcement email is sent to `[email protected]` with the subject `[ANNOUNCE] kubernetes-template-project $VERSION is released`
0 commit comments