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 fc30b52 commit a642860Copy full SHA for a642860
build.gradle
@@ -66,10 +66,10 @@ publishing {
66
repositories {
67
maven {
68
name = "GitHubPackages"
69
- url = uri("https://maven.pkg.github.com/aneesh-neelam/java-lib-aws-s3-iterator")
+ url = "https://maven.pkg.github.com/aneesh-neelam/java-lib-aws-s3-iterator"
70
credentials {
71
- username = project.findProperty("gpr.user") ?: System.getenv("GH_USERNAME")
72
- password = project.findProperty("gpr.key") ?: System.getenv("GH_TOKEN")
+ username = System.getenv("GITHUB_ACTOR")
+ password = System.getenv("GITHUB_TOKEN")
73
}
74
75
0 commit comments