guide: Also tag the release commit and push it

This commit is contained in:
Nick Fitzgerald
2018-07-26 15:01:36 -07:00
parent 7a7d0d4097
commit 08a449f667

View File

@ -49,3 +49,16 @@
cd crates/cli && cargo publish && cd -
cargo publish --allow-dirty # because of uncommitted, commented out [patch] section
```
* [ ] Push the commit:
```
git push origin master
```
* [ ] Tag the release and push it:
```
git tag 0.X.Z
git push origin --tags
```