Skip to content

Commit

Permalink
Fix wrong fabric builds being published
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Aug 15, 2024
1 parent 264665a commit 5c1c653
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions buildSrc/src/main/groovy/multiloader-loader-fabric.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,12 @@ loom {
}
}

publishing {
publications { PublicationContainer publicationContainer ->
publicationContainer.getByName("maven") { MavenPublication publication ->
publication.artifacts = [remapJar, javadocJar, deobfJar, remapSourcesJar]
publication.artifactId = project.archivesBaseName.toLowerCase() // GH can't handle uppercase...
}
}
}

0 comments on commit 5c1c653

Please sign in to comment.