mirror of https://github.com/kubernetes/kops.git
Merge pull request #13295 from justinsb/dont_push_with_gh
docs for release process shouldn't assume remotes
This commit is contained in:
commit
c39dc6619c
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue