Skip to content

Commit

Permalink
build: fix modrinth builds maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
bconlon1 committed Dec 31, 2024
1 parent bb92d67 commit 200f1ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/multiloader-loader.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ modrinth {
versionType = "${version_type}"
versionName = "${mod_name} - ${version}"
changelog = new File("$rootDir/docs/CHANGELOG.md").text
uploadFile = [this.project.name.contains("neoforge") ? tasks.jar : tasks.<Jar>findByName("remapJar")]
uploadFile = this.project.name.contains("neoforge") ? tasks.jar : tasks.<Jar>findByName("remapJar")
gameVersions = ["${minecraft_version}"]
loaders = [this.project.name.contains("neoforge") ? "neoforge" : "fabric"]
}
Expand Down

0 comments on commit 200f1ee

Please sign in to comment.