Skip to content

Commit

Permalink
Merge pull request #3553 from kubernetes/tstromberg-patch-4
Browse files Browse the repository at this point in the history
Do tagging in a direct clone of upstream
  • Loading branch information
tstromberg committed Jan 29, 2019
2 parents 7ccfe51 + 05ed319 commit 84ccc68
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/contributors/releasing_minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 84ccc68

Please sign in to comment.