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 a07c709 commit 3486f92Copy full SHA for 3486f92
build.gradle.kts
@@ -127,6 +127,10 @@ publishing {
127
maven {
128
name = "GitHubPackages"
129
url = uri("https://maven.pkg.github.com/BackendStack21/realtime-pubsub-client-java")
130
+ credentials {
131
+ username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME_GITHUB") ?: System.getenv("GITHUB_ACTOR")
132
+ password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN_GITHUB") ?: System.getenv("GITHUB_TOKEN")
133
+ }
134
}
135
136
0 commit comments