Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 933 Bytes

BUILDING.md

File metadata and controls

28 lines (19 loc) · 933 Bytes

Building gRPC-Kotlin

Building should only be necessary if you are making changes to gRPC-Kotlin, or if you'd like to use or test a version of gRPC-Kotlin that hasn't been released yet.

Use the following gradle command to build gRPC-Kotlin:

$ ./gradlew build

Install the built artifacts into your local Maven repository so that you can use them in your projects:

$ ./gradlew publishToMavenLocal

Ensure that you configure your project build to use the local version of gRPC-Kotlin.

Releasing

  1. Generate a changelog and prepend it to CHANGELOG.md
  2. Create a Pull Request with updated versions in: build.gradle.kts and examples/build.gradle.kts
  3. Once merged, tag the release with vX.Y.Z and push the tag. This will kick off a GitHub Action that does the actual release.