Skip to content

Commit e8bf94a

Browse files
committed
fixed for github build
1 parent 262bbf5 commit e8bf94a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ ext {
2323
processorApiVersion = '1.1.0'
2424
jacksonVersion = '2.11.3'
2525

26-
bintrayUser = project.hasProperty ('BINTRAY_USER') ? BINTRAY_USER : 'n/a'
27-
bintrayKey = project.hasProperty ('BINTRAY_KEY') ? BINTRAY_KEY : 'n/a'
26+
bintrayUser = project.findProperty ('BINTRAY_USER') ?: System.getenv ("BINTRAY_USER") ?: 'n/a'
27+
bintrayKey = project.findProperty ('BINTRAY_KEY') ?: System.getenv ("BINTRAY_KEY") ?: 'n/a'
2828
}
2929

3030

0 commit comments

Comments
 (0)