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 6282db8 commit 8823d28Copy full SHA for 8823d28
build.gradle.kts
@@ -26,8 +26,8 @@ configure<PublishingExtension> {
26
name = "GitHubPackages"
27
url = uri("https://maven.pkg.github.com/sourceplusplus/protocol")
28
credentials {
29
- username = (project.findProperty("gpr.user") ?: System.getenv("USERNAME"))?.toString()
30
- password = (project.findProperty("gpr.key") ?: System.getenv("TOKEN"))?.toString()
+ username = System.getenv("GH_PUBLISH_USERNAME")?.toString()
+ password = System.getenv("GH_PUBLISH_TOKEN")?.toString()
31
}
32
33
0 commit comments