Move the updating of `web/project-website/data/flamenco.yaml` to an earlier step, so that it's committed & tagged along with the rest of the changes.
972 B
972 B
| title | weight |
|---|---|
| Releasing | 100 |
This page describes how to release a new version of Flamenco. This requires not
only access to the sources, but also to the flamenco.blender.org
infrastructure. As such, it's only practically helpful for a small number of
people.
Steps to release a new version of Flamenco
Replace ${VERSION} with the actual version number.
- Update
CHANGELOG.mdand mark the to-be-released version as released today. - Update
web/project-website/data/flamenco.yamlfor the new version. - Update
Makefileand change theVERSIONandRELEASE_CYCLEvariables. make update-versiongit commit -m "Bump version to ${VERSION}"git tag v${VERSION}make release-package- Check that the files in
dist/are there and have a non-zero size. make publish-release-packagesto upload the packages to the website.make project-websiteto generate and publish the new website.git push && git push --tags