From 05b8671d178b2d87e91fdd8610e32ef0d2f4a1d4 Mon Sep 17 00:00:00 2001 From: Jeff Regan Date: Wed, 7 Oct 2020 14:35:44 -0700 Subject: [PATCH] Update README.md --- releasing/README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/releasing/README.md b/releasing/README.md index 609d21542..910247dc2 100644 --- a/releasing/README.md +++ b/releasing/README.md @@ -67,12 +67,18 @@ gorepomod release {top} cd ../kustomize # Pin to the most recent kyaml. -gorepomod pin kyaml +gorepomod pin kyaml --doIt -# Pin cmd/config/go.mod to the new cli-utils, e.g. -(cd cmd/config; go mod edit -require=sigs.k8s.io/cli-utils@v0.20.2) +# Determine which version of cli-utils you want at +# https://github.com/kubernetes-sigs/cli-utils/releases +# +# Pin cmd/config/go.mod to that version, e.g.: +(cd cmd/config; go mod edit -require=sigs.k8s.io/cli-utils@v0.20.3) -# Merge these changes to upstream (make a PR, etc.) +# Test it. +make prow-presubmit-check >& /tmp/k.txt; echo $? + +# Make a PR and merge these changes. # Release it. gorepomod release cmd/config