From ea20e94e94f1cd56cfc6ebf216fc07d1ae308796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 21 Feb 2023 12:17:09 +0100 Subject: [PATCH] Website: more updates to 'steps to release' 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. --- .../content/development/releasing/_index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/web/project-website/content/development/releasing/_index.md b/web/project-website/content/development/releasing/_index.md index 6f424cf6..ca5294d1 100644 --- a/web/project-website/content/development/releasing/_index.md +++ b/web/project-website/content/development/releasing/_index.md @@ -13,13 +13,13 @@ people. Replace `${VERSION}` with the actual version number. 1. Update `CHANGELOG.md` and mark the to-be-released version as released today. -2. Update `Makefile` and change the `VERSION` and `RELEASE_CYCLE` variables. -3. `make update-version` -4. `git commit -m "Bump version to ${VERSION}"` -5. `git tag v${VERSION}` -6. `make release-package` -7. Check that the files in `dist/` are there and have a non-zero size. -8. `make publish-release-packages` to upload the packages to the website. -9. Update `web/project-website/data/flamenco.yaml` for the new version. +2. Update `web/project-website/data/flamenco.yaml` for the new version. +3. Update `Makefile` and change the `VERSION` and `RELEASE_CYCLE` variables. +4. `make update-version` +5. `git commit -m "Bump version to ${VERSION}"` +6. `git tag v${VERSION}` +7. `make release-package` +8. Check that the files in `dist/` are there and have a non-zero size. +9. `make publish-release-packages` to upload the packages to the website. 10. `make project-website` to generate and publish the new website. 11. `git push && git push --tags`