The deployment is triggered by git tags. Here are the local commands to add the tag.
# First Bump version in setup.py
# Commit version bumb
# Create tag
git tag --annotate v`python setup.py --version` --message "Upgrade to v`python setup.py --version`"
# Push tag
git push --tags
# Push commit
git push
The deployment is triggered by git tags. Here are the local commands to add the tag.