Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Signed-off-by: Alpha <[email protected]>
  • Loading branch information
AlphaKR93 authored Nov 3, 2024
1 parent 5596d99 commit 6a16940
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ allprojects {

java.toolchain.languageVersion.set(JavaLanguageVersion.of(jdkVersion))

publishing.repositories.maven("https://maven.pkg.github.com/$providerRepo") {
publishing.repositories.maven("https://maven.pkg.github.com/PlazmaMC/Plazmaclip") {
name = "githubPackage"
url = uri("https://maven.pkg.github.com/$providerRepo")

credentials {
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_TOKEN")
username = property("ghName").toString()
password = property("ghToken").toString()
}
}
}
Expand Down

0 comments on commit 6a16940

Please sign in to comment.