Merge pull request #13295 from justinsb/dont_push_with_gh

docs for release process shouldn't assume remotes
This commit is contained in:
Kubernetes Prow Robot 2022-02-23 23:19:33 -08:00 committed by GitHub
commit c39dc6619c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -73,7 +73,6 @@ git add . && git commit -m "Release ${VERSION}"
This is the "release commit". Push and create a PR.
```
git push -u origin release_${VERSION}
gh pr create -f
```
@ -124,7 +123,6 @@ Review then send a PR with the release notes:
```
git add -p docs/releases/${DOC}-NOTES.md
git commit -m "Release notes for ${VERSION}"
git push -u origin relnotes_${VERSION}
gh pr create -f
```
@ -156,7 +154,6 @@ Currently we send the image and non-image artifact promotion PRs separately.
cd ${GOPATH}/src/k8s.io/k8s.io
git add -p k8s.gcr.io/images/k8s-staging-kops/images.yaml
git commit -m "Promote kOps $VERSION images"
git push -u origin kops_images_${VERSION}
gh pr create -f
```
@ -181,7 +178,6 @@ Verify, then send a PR:
```
git add artifacts/manifests/k8s-staging-kops/${VERSION}.yaml
git commit -m "Promote kOps $VERSION binary artifacts"
git push -u origin kops_artifacts_${VERSION}
gh pr create -f
```