Skip to content

Commit

Permalink
💚 Fix publishing issue
Browse files Browse the repository at this point in the history
Signed-off-by: XyperCode <xypercode@ultreon.dev>
  • Loading branch information
XyperCode committed Dec 14, 2024
1 parent 390ecd2 commit 82a65b2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion buildSrc/src/main/groovy/multiloader-common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,12 @@ publishing {
}
repositories {
maven {
url System.getenv('local_maven_url')
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/Ultreon/XinexLib")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}
}

0 comments on commit 82a65b2

Please sign in to comment.