To build the installer:
./gradlew packageDistributionForCurrentOS
This places an installer in build\compose\binaries\main\...
.
To run the application without going through the full installer build:
./gradlew run
- Ensure there are no unexpected local changes in the repository, and that the branch you have checked out is the main branch.
- Perform a version bump:
- Edit
version.txt
to increase the version. - Edit
Changes.md
to state that version for the top-most block.
- Edit
- Commit that
git commit Changes.md version.txt
- Tag that, and push the tag
git tag NEW-VERSION git push --tags
- Build the installers
./gradlew clean packageDistributionForCurrentOS
- Over on GitHub, navigate to the tag and "Create release from tag".
- Conventional title is the app name followed by the tag name
- Conventional body is the entries from
Changes.md
for the new version - Publish the release
- The installers should have finished being built by now, so add those to the release you just created.