Skip to content

Commit 9a5590b

Browse files
committed
chore: fix publishing repo
1 parent d7b305a commit 9a5590b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ concurrency:
2929
permissions:
3030
contents: write
3131
issues: write
32+
packages: write
3233
repository-projects: write
3334

3435
env:

gradle/build-logic/common-plugins/src/main/kotlin/plugins/publishing.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ publishing {
3838

3939
maven {
4040
name = "GitHubPackages"
41-
url = uri(Repo.githubPackage(libs.versions.publish.dev.name.get(), project.name))
41+
url = uri(Repo.githubPackage(libs.versions.publish.dev.name.get(), rootProject.name))
4242
credentials {
4343
username = findProperty("gpr.user") as String? ?: Repo.GITHUB_USER
4444
password = findProperty("gpr.key") as String? ?: Repo.GITHUB_TOKEN

0 commit comments

Comments
 (0)