Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 474 Bytes

File metadata and controls

14 lines (13 loc) · 474 Bytes

Setup

  1. Configure git with your codesigning key; make sure it's the same as the one you use to sign binaries (i.e. it's the same one you adaded to gradle.properties):
    # Do this for the repo only
    git config user.email "[email protected]"
    git config user.signingKey "your-key-id"
  2. Add your plugins.gradle.org credentials to ~/.gradle/gradle.properties:
    gradle.publish.key=<the key>
    gradle.publish.secret=<the secret>