From 6aa72b66efc499254da080f75373823a68290464 Mon Sep 17 00:00:00 2001 From: Jeff Regan Date: Fri, 18 Sep 2020 13:15:52 -0700 Subject: [PATCH] Update README.md --- releasing/README.md | 52 +++++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/releasing/README.md b/releasing/README.md index dd025bc2f..0e16e9255 100644 --- a/releasing/README.md +++ b/releasing/README.md @@ -25,31 +25,33 @@ of one of the several [Go modules] in this repository. > > In commands this is roughly: > -> - cd ~/gopath/src/sigs.k8s.io/kustomize -> - git fetch upstream -> - git co master -> - git rebase upstream/master -> - make prow-presubmit-check -> - gorepomod release kyaml # undraft the release -> - cd ../cli-utils -> - gorepomod pin kyaml -> - merge the PR -> - gorepomod release {top} -> - cd ../kustomize -> - # manually pin cmd/config/go.mod to the new cli-utils -> - gorepomod pin kyaml -> - # merge the PR -> - gorepomod release cmd/config # undraft the release -> - gorepomod pin cmd/config -> - # merge the PR -> - gorepomod release api # undraft the release -> - gorepomod pin api -> - # merge the PR -> - gorepomod release kustomize # undraft the release -> - gorepomod unpin api -> - gorepomod unpin cmd/config -> - gorepomod unpin kyaml -> - # merge the PR +> ``` +> cd ~/gopath/src/sigs.k8s.io/kustomize +> git fetch upstream +> git co master +> git rebase upstream/master +> make prow-presubmit-check +> gorepomod release kyaml # undraft the release +> cd ../cli-utils +> gorepomod pin kyaml +> merge the PR +> gorepomod release {top} +> cd ../kustomize +> # manually pin cmd/config/go.mod to the new cli-utils +> gorepomod pin kyaml +> # merge the PR +> gorepomod release cmd/config # undraft the release +> gorepomod pin cmd/config +> # merge the PR +> gorepomod release api # undraft the release +> gorepomod pin api +> # merge the PR +> gorepomod release kustomize # undraft the release +> gorepomod unpin api +> gorepomod unpin cmd/config +> gorepomod unpin kyaml +> # merge the PR +> ``` Briefly: - The repo HEAD is in a clean state (all tests passing).