Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsuzuki authored Jul 27, 2021
1 parent 9f9da38 commit 53aec4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ android {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/rjsuzuki/billingz")
credentials {
username = githubProperties['gpr.usr'] ?: System.getenv("GPR_USER") //GPR_USER is a CI Environment Variable
password = githubProperties['gpr.key'] ?: System.getenv("GPR_API_KEY") //GPR_API_KEY is a CI Environment Variable
username = System.getenv("GPR_USER") ?: githubProperties['gpr.usr'] // GPR_USER is a CI Environment Variable
password = System.getenv("GPR_API_KEY") ?: githubProperties['gpr.key'] // GPR_API_KEY is a CI Environment Variable
}
}
}
Expand Down

0 comments on commit 53aec4e

Please sign in to comment.