Skip to content

Commit 1872a2d

Browse files
author
Yan Gobeil
committed
add tags to readme
1 parent 750c1b1 commit 1872a2d

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,15 @@ You will have to update the version number in the setup.py file. Increase the fi
4949
the second digit for MINOR changes and the third digit for BUG FIXES.
5050

5151
Also make sure that you create a new release on github at the commit that you deploy. To do so you have to create a tag
52-
with the version number and add it to a release.
53-
52+
with the version number and add it to a release. The command to create a tag is
53+
```
54+
git tag -a vX.X.X commit_id -m "Your message here"
55+
```
56+
with the `commit_id``being the id of the commit that you are deploying. Then you just use
57+
```
58+
git push origin vX.X.X
59+
```
60+
to send the tag to github.
5461

5562
### Process (dev)
5663

0 commit comments

Comments
 (0)