diff --git a/guide/src/publishing.md b/guide/src/publishing.md index 01ced893..ce0ed017 100644 --- a/guide/src/publishing.md +++ b/guide/src/publishing.md @@ -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 + ```