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 d7b305a commit 9a5590bCopy full SHA for 9a5590b
.github/workflows/build.yml
@@ -29,6 +29,7 @@ concurrency:
29
permissions:
30
contents: write
31
issues: write
32
+ packages: write
33
repository-projects: write
34
35
env:
gradle/build-logic/common-plugins/src/main/kotlin/plugins/publishing.gradle.kts
@@ -38,7 +38,7 @@ publishing {
38
39
maven {
40
name = "GitHubPackages"
41
- url = uri(Repo.githubPackage(libs.versions.publish.dev.name.get(), project.name))
+ url = uri(Repo.githubPackage(libs.versions.publish.dev.name.get(), rootProject.name))
42
credentials {
43
username = findProperty("gpr.user") as String? ?: Repo.GITHUB_USER
44
password = findProperty("gpr.key") as String? ?: Repo.GITHUB_TOKEN
0 commit comments