Skip to content

Commit a642860

Browse files
committed
Added Gradle Publish
1 parent fc30b52 commit a642860

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ publishing {
6666
repositories {
6767
maven {
6868
name = "GitHubPackages"
69-
url = uri("https://maven.pkg.github.com/aneesh-neelam/java-lib-aws-s3-iterator")
69+
url = "https://maven.pkg.github.com/aneesh-neelam/java-lib-aws-s3-iterator"
7070
credentials {
71-
username = project.findProperty("gpr.user") ?: System.getenv("GH_USERNAME")
72-
password = project.findProperty("gpr.key") ?: System.getenv("GH_TOKEN")
71+
username = System.getenv("GITHUB_ACTOR")
72+
password = System.getenv("GITHUB_TOKEN")
7373
}
7474
}
7575
}

0 commit comments

Comments
 (0)