Skip to content

Commit 3ea541e

Browse files
committed
remove gpr.user and gpr.key
1 parent 8e52d0d commit 3ea541e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,14 @@ publishing {
6464
name = "GitHubPackages"
6565
url = uri("https://maven.pkg.github.com/darkguardsman/codinglib")
6666
credentials {
67-
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
68-
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
67+
username = System.getenv("GITHUB_ACTOR")
68+
password = System.getenv("GITHUB_TOKEN")
6969
}
7070
}
7171
}
7272
publications {
7373
gpr(MavenPublication) {
74+
artifactId 'coding-lib'
7475
from(components.java)
7576
}
7677
}

0 commit comments

Comments
 (0)