From f03fdc09cb239dfe2eca7f19cd1fb6e0f519b77f Mon Sep 17 00:00:00 2001 From: Jeff Regan Date: Fri, 18 Sep 2020 13:10:19 -0700 Subject: [PATCH] Update README.md --- releasing/README.md | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/releasing/README.md b/releasing/README.md index 218bd831a..dd025bc2f 100644 --- a/releasing/README.md +++ b/releasing/README.md @@ -31,19 +31,25 @@ of one of the several [Go modules] in this repository. > - git rebase upstream/master > - make prow-presubmit-check > - gorepomod release kyaml # undraft the release -> - cd ../cli-tuils -> - gorepomod pin kyaml # merge the PR -> - gorepomod release cli-util # merge the PR +> - cd ../cli-utils +> - gorepomod pin kyaml +> - merge the PR +> - gorepomod release {top} > - cd ../kustomize -> - gorepomod pin kyaml # merge the PR +> - # 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 pin cmd/config +> - # merge the PR > - gorepomod release api # undraft the release -> - gorepomod pin api # merge the PR +> - 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 +> - gorepomod unpin kyaml +> - # merge the PR Briefly: - The repo HEAD is in a clean state (all tests passing).