Do tagging in a direct clone of upstream

Otherwise you may run into:

`error: src refspec v0.33.1 matches more than one` errors pushing.
pull/3553/head
Thomas Strömberg 2019-01-18 16:57:02 -08:00 committed by GitHub
parent f2aa245011
commit 05ed319493
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -55,12 +55,14 @@ Merge the output into CHANGELOG.md. See [PR#3175](https://github.com/kubernetes/
NOTE: Confirm that all release-related PR's have been submitted before doing this step.
From your own fork of minikube, run:
Do this in a direct clone of the upstream kubernetes/minikube repository (not your fork!):
```
git checkout master
git tag -a v<version> -m "<version> Release"
git push upstream v<version>
git fetch \
&& git checkout master \
&& git pull \
&& git tag -a v<version> -m "<version> Release" \
&& git push origin v<version>
```
## Build the Release