Skip to content

Commit 8823d28

Browse files
committed
publish
1 parent 6282db8 commit 8823d28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ configure<PublishingExtension> {
2626
name = "GitHubPackages"
2727
url = uri("https://maven.pkg.github.com/sourceplusplus/protocol")
2828
credentials {
29-
username = (project.findProperty("gpr.user") ?: System.getenv("USERNAME"))?.toString()
30-
password = (project.findProperty("gpr.key") ?: System.getenv("TOKEN"))?.toString()
29+
username = System.getenv("GH_PUBLISH_USERNAME")?.toString()
30+
password = System.getenv("GH_PUBLISH_TOKEN")?.toString()
3131
}
3232
}
3333
}

0 commit comments

Comments
 (0)