Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerS1066 committed Jun 23, 2024
1 parent e7bb853 commit 93b11da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Movecraft/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ tasks.processResources {

publishing {
publications {
create<MavenPublication>("maven") {
create<MavenPublication>("github") {
groupId = "net.countercraft"
artifactId = "movecraft"
version = project.version
version = "$project.version"

from(components["java"])
}
}
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/apdevteam/movecraft"
url = uri("https://maven.pkg.github.com/apdevteam/movecraft")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
Expand Down

0 comments on commit 93b11da

Please sign in to comment.