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 f2ec0a7 commit 05d7c0dCopy full SHA for 05d7c0d
pluto-kotlin-client-sdk/build.gradle
@@ -66,8 +66,8 @@ publishing {
66
name = 'github'
67
url = uri("https://maven.pkg.github.com/MuShare/PlutoKotlinClientSDK")
68
credentials {
69
- username = System.getenv("USERNAME")
70
- password = System.getenv("PASSWORD")
+ username = project.findProperty("name") ?: System.getenv("USERNAME")
+ password = project.findProperty("token") ?: System.getenv("TOKEN")
71
}
72
73
0 commit comments