Updated Release Process (markdown)

Bryan Boreham
2018-03-12 14:52:24 +00:00
parent 4b5f2e1bb7
commit 1e0c02fb72
+3 -2
@@ -86,9 +86,10 @@ Proceed from here only when:
## Tag
```
$ git tag -a -m "Release v0.1.0" v0.1.0
$ TAG=v0.1.0
$ git tag -a -m "Release $TAG" $TAG
$ git push --tags origin release-0.1
$ git tag -a -f -m "Release v0.1.0" latest_release v0.1.0
$ git tag -a -f -m "Release $TAG" latest_release $TAG
$ git push -f git@github.com:weaveworks/scope latest_release
```