Skip to content

Commit 5a523aa

Browse files
thockinstp-ip
authored andcommitted
Add a RELEASING doc
1 parent 433fe7a commit 5a523aa

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

RELEASING.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Cutting a release
2+
3+
```
4+
$ git tag
5+
v2.0.0
6+
v2.0.1
7+
v2.0.2
8+
v2.0.3
9+
v2.0.4
10+
11+
# Pick the next release number
12+
13+
$ git tag -am "v2.0.5" v2.0.5
14+
15+
$ make container TAG=v2.0.5
16+
<...lots of output...>
17+
container: gcr.io/google-containers/git-sync-amd64:v2.0.5
18+
19+
$ gcloud docker push -- gcr.io/google-containers/git-sync-amd64:v2.0.5
20+
<...lots of output...>
21+
v2.0.5: digest: sha256:904833aedf3f14373e73296240ed44d54aecd4c02367b004452dfeca2465e5bf size: 950
22+
```
23+
24+
Lastly, make a release through the github UI.

0 commit comments

Comments
 (0)