Skip to content

Commit 34ddfcc

Browse files
authored
Merge pull request #101 from intercom/BL/gradle
use env variables for bintray creds
2 parents 367d3a6 + 5cc17b7 commit 34ddfcc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intercom-java/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ publishing {
4444
bintray {
4545
// gradle apslodes if the bintray* props aren't found and we never run this task in circle
4646
if (System.getenv('release') != null) {
47-
user = bintrayUser
48-
key = bintrayKey
47+
user = System.getenv('BINTRAY_USER')
48+
key = System.getenv('BINTRAY_KEY')
4949
}
5050
publications = ['mavenJava']
5151
dryRun = false

0 commit comments

Comments
 (0)