Skip to content

Commit 08a449f

Browse files
committed
guide: Also tag the release commit and push it
1 parent 7a7d0d4 commit 08a449f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

guide/src/publishing.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,16 @@
4949
cd crates/cli && cargo publish && cd -
5050
cargo publish --allow-dirty # because of uncommitted, commented out [patch] section
5151
```
52+
53+
* [ ] Push the commit:
54+
55+
```
56+
git push origin master
57+
```
58+
59+
* [ ] Tag the release and push it:
60+
61+
```
62+
git tag 0.X.Z
63+
git push origin --tags
64+
```

0 commit comments

Comments
 (0)