Building an Unlauncher release is straightforward.
1.2.1) from the latest commit on the master branch
versionName in the build.gradle.kts matches the tag that you are pushingversionCode and versionName in the build.gradle.kts fileA beta release should be published ahead of an official release any time there are major changes to the app or the build process.
Unfortunately, F-Droid does not have an automatic process for triggering "beta" releases like it does for normal automatic updates yet.
However, an F-Droid user will only be prompted to upgrade an app (or have the app be auto-upgraded) if their locally installed app has a version/code that is less than the CurrenVersion/CurrentVersionCode defined in the fdroiddata yml config file.
So, creating a beta release for Unlauncher requires the following steps:
2.0.0-beta.1)
versionName in the build.gradle.kts file to match the beta tag name since this will trigger a normal release in F-DroidBuilds entry for the beta release
CurrenVersion/CurrentVersionCode since that will trigger a normal releaseversionCode in the build.gradle.kts file (versionName should not be updated)The status for the latest Unlauncher F-Droid build can be found here.
A list of all recent F-Droid builds can be found here.