Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 621 Bytes

RELEASE.md

File metadata and controls

30 lines (28 loc) · 621 Bytes

How to release

  • Checkout the master branch
git checkout master
git commit -m "Bump version"
  • Release to bintray without testing (master branch should be tested)
./gradlew clean build bintrayUpload -PdryRun=false -x test
  • Create the tag
git tag v[VER.SI.ON]
  • Push the previous created tag
 git push origin v[VER.SI.ON]
  • Create the GitHub release
  • Add version back (build.gradle.kts) to -NOSNAPSHOT
  • Push the master branch
git push origin master