Versioning an Android project with semantic-release
The semantic-release is a very powerful tool for automating the versioning of your project based on the commit messages (fix, feat, chore, etc.). The main issue with using it is that it produces a standard SemVer string but does not have a proper output to increment the Android versionCode. In Android, versionCode is a positive integer used by […]