When you're ready to publish a new version of BakeKit, follow this process:
- Ensure all intended features, bug fixes, and updates are merged into the
developbranch. - Run all tests.
- Verify that the application installs and runs correctly.
From the develop branch:
git checkout develop
git pull origin develop
git tag vX.Y.Z -m "Release version X.Y.Z"
git push origin vX.Y.ZReplace X.Y.Z with the appropriate version number.
If you use a main branch for stable code:
git checkout main
git merge develop
git push origin main- Go to https://github.com/bakewizard/BakeKit/releases
- Click “Create a new release”
- Choose the tag (e.g.,
vX.Y.Z) - Add release notes
- Publish release
You've shipped a new version of BakeKit!