We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394638c commit 1113345Copy full SHA for 1113345
build.gradle
@@ -156,8 +156,8 @@ release {
156
afterReleaseBuild.dependsOn bintrayUpload
157
158
bintray {
159
- user = System.getenv('BINTRAY_USER') ?: BINTRAY_USER
160
- key = System.getenv('BINTRAY_KEY') ?: BINTRAY_KEY
+ user = System.getenv('BINTRAY_USER') ?: project.findProperty('BINTRAY_USER') ?: ''
+ key = System.getenv('BINTRAY_KEY') ?: project.findProperty('BINTRAY_KEY') ?: ''
161
publications = ['maven']
162
publish = true
163
pkg {
0 commit comments