Skip to content

Commit

Permalink
#7 Add passphrase configuration for signing purpose.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceilfors committed Apr 1, 2016
1 parent 69fb13f commit 2abf941
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ These configurations are set via Java System Properties e.g. `groovy -Dgq.tmp=/e

1. Create a new tag for the next release: `git tag <version>`
2. Check if axion-plugin is successfully picking up the intended version `./gradlew currentVersion`
3. Upload to jcenter: `./gradlew bintrayUpload -PbintrayUser=<> -PbintrayApiKey=<>`
3. Upload to jcenter: `./gradlew bintrayUpload -PbintrayUser=<> -PbintrayApiKey=<> -PgpgPassphrase='<>'`
4. Push tags to github: `git push --tags`

# Credits
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ bintray {
name = project.version
gpg {
sign = true
passphrase = project.hasProperty('gpgPassphrase') ? project.property('gpgPassphrase') : System.getenv('GPG_PASSPHRASE')
}
}
}
Expand Down

0 comments on commit 2abf941

Please sign in to comment.