Add a RELEASING doc

This commit is contained in:
Tim Hockin 2017-05-29 21:54:56 -07:00 committed by Michael Grosser
parent 433fe7a28c
commit 5a523aa364
1 changed files with 24 additions and 0 deletions

24
RELEASING.md Normal file
View File

@ -0,0 +1,24 @@
# Cutting a release
```
$ git tag
v2.0.0
v2.0.1
v2.0.2
v2.0.3
v2.0.4
# Pick the next release number
$ git tag -am "v2.0.5" v2.0.5
$ make container TAG=v2.0.5
<...lots of output...>
container: gcr.io/google-containers/git-sync-amd64:v2.0.5
$ gcloud docker push -- gcr.io/google-containers/git-sync-amd64:v2.0.5
<...lots of output...>
v2.0.5: digest: sha256:904833aedf3f14373e73296240ed44d54aecd4c02367b004452dfeca2465e5bf size: 950
```
Lastly, make a release through the github UI.