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 9fc8fc4 commit 7a7850bCopy full SHA for 7a7850b
buildSrc/src/main/kotlin/GitHubPackages.kt
@@ -24,8 +24,8 @@ fun RepositoryHandler.githubPackages(
24
name = "GitHubPackages"
25
url = uri("https://maven.pkg.github.com/$repo")
26
credentials {
27
- username = findProperty("gpr.user") as String? ?: System.getenv("USERNAME")
28
- password = findProperty("gpr.key") as String? ?: System.getenv("TOKEN")
+ username = findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR")
+ password = findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
29
}
30
setup()
31
0 commit comments