kumo/RELEASE.md
2020-11-24 20:16:55 -08:00

28 lines
981 B
Markdown

# Releasing
## Release to Nexus
Kumo uses the `maven release` and `nexus-staging-maven-plugin` plugins to deploy to nexus.
The commands require GPG credentials to sign the jars.
Currently only the owner @kennycason can perform this.
The deploy command:
`mvn release:clean release:prepare release:perform`
This removes the `-SNAPSHOT` from the version, performs and tags a git release, uploads to nexus, then bumps the version to the next SNAPSHOT version.
## Update Brew Install Scripts + Doc
Brew install script must contain the updated version and md5 checksums of the file.
Brew formula page can be found [here](https://formulae.brew.sh/formula/kumo)
Brew formula in GitHub can be found [here](https://github.com/Homebrew/homebrew-core/blob/master/Formula/kumo.rb)
md5 checksum can be calculated via:
`curl -sL https://search.maven.org/remotecontent\?filepath\=com/kennycason/kumo-cli/1.28/kumo-cli-1.28.jar | shasum -a 256`
Additionally the README must be updated.