-
Notifications
You must be signed in to change notification settings - Fork 0
Releasing a New Version
Mikael Onsjö edited this page Sep 4, 2024
·
2 revisions
A new version is triggered by pushing a new "tag" with the appropriate name using git.
When a tag is pushed to the master branch, a github workflow will start the process
of building and releasing the package. The tag name must correspond to the version number
that is defined in totolo/__init__.py or the workflow will stop.
# to create a tag:
git tag <tag-name>
# push all tags:
git push origin --tags
# push specific tag:
git push origin <tag-name>
Here is an example tag name: v1.6.0. The leading v is important.