Shared GHA workflows and tasks used to maintain the HoloViz repositories
To make a release tag the commit with the version number and push it to the repo.
git tag -a v0.1.X -m "Version 0.1.X"
git push --tags v0.1.XAfterward merge the commits up tag into v0 branch. This branch is used across
projects to not manually update to the latest tag.
git checkout v0
git merge main
git push origin v0For the v1 this will automatically be updated by the update-major-tag workflow.