Skip to content

Commit

Permalink
build: attempt publish jar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bconlon1 committed Nov 10, 2024
1 parent 8fc96cf commit 70626e7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ curseforge {
changelogType = "markdown"
addGameVersion("${minecraft_version}")
addGameVersion("Fabric")
mainArtifact(tasks.jar) {
mainArtifact(tasks.remapJar) {
displayName = "${mod_name} - ${version}"
}
}
Expand All @@ -141,9 +141,10 @@ modrinth {
versionType = "${version_type}"
versionName = "${mod_name} - ${version}"
changelog = new File("$rootDir/docs/CHANGELOG.md").text
uploadFile = tasks.jar
uploadFile = tasks.remapJar
gameVersions = ["${minecraft_version}"]
loaders = ["fabric"]
debugMode = true
}

idea {
Expand Down

0 comments on commit 70626e7

Please sign in to comment.