Skip to content

Commit

Permalink
Merge pull request #15 from xendit/feat/implementation
Browse files Browse the repository at this point in the history
Feat: logging for debugging
  • Loading branch information
jidi1f authored Sep 26, 2022
2 parents e8fc3bf + 4d23cbf commit 7e0a66e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,15 @@
OSSRHpassword = properties.getProperty("ossrh.password")
signingPassword = properties.getProperty("signing.password")
} else {
println("here")
// Use system environment variables
OSSRHusername = System.getenv("OSSRH_USERNAME") ?: ""
OSSRHpassword = System.getenv("OSSRH_PASSWORD") ?: ""
OSSRHstagingProfileId = System.getenv("SONATYPE_STAGING_PROFILE_ID") ?: ""
signingPassword = System.getenv("SIGNING_PASSWORD") ?: ""
}

println(System.getenv("OSSRH_USERNAME"))
println(OSSRHusername)
println(OSSRHpassword)
println(OSSRHstagingProfileId)
Expand Down
2 changes: 1 addition & 1 deletion xenissuing-android-lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ afterEvaluate {
}
}
}

println("here2")
signing {
sign(publishing.publications["release"])
}
Expand Down

0 comments on commit 7e0a66e

Please sign in to comment.