diff options
| author | Isaac Hollander McCreery <ihmccreery@google.com> | 2015-11-18 16:19:01 -0800 |
|---|---|---|
| committer | Isaac Hollander McCreery <ihmccreery@google.com> | 2015-11-18 16:19:01 -0800 |
| commit | 8f8914f3ded0953fda8d532f1865bcc342b8e477 (patch) | |
| tree | 0d20ef95fe6c603a7ded225b5c30835345f384bb | |
| parent | eac73b42443d1930364e5dccd3f375b57772e5d5 (diff) | |
Add sanity checks for release
| -rw-r--r-- | releasing.md | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/releasing.md b/releasing.md index 4805481f..d4347ce4 100644 --- a/releasing.md +++ b/releasing.md @@ -148,8 +148,17 @@ Then, run ``` This will do a dry run of the release. It will give you instructions at the -end for `pushd`ing into the dry-run directory and having a look around. If -you're satisfied with the result, run +end for `pushd`ing into the dry-run directory and having a look around. +`pushd` into the directory and make sure everythig looks as you expect: + +```console +git log "${VER}" # do you see the commit you expect? +make release +./cluster/kubectl.sh version -c +``` + +If you're satisfied with the result of the script, go back to `upstream/master` +run ```console ./release/cut-official-release.sh "${VER}" "${GITHASH}" --no-dry-run |
