Skip to content

Commit

Permalink
Fix: Modrinth file names
Browse files Browse the repository at this point in the history
  • Loading branch information
onebeastchris committed Jun 18, 2024
1 parent 0b2bae2 commit 738d0b7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ modrinth {
token.set(System.getenv("MODRINTH_TOKEN")) // Even though this is the default value, apparently this prevents GitHub Actions caching the token?
projectId.set("hurricane")
versionNumber.set(project.version as String + "-" + System.getenv("GITHUB_RUN_NUMBER"))
versionType.set("beta")
versionType.set("release")

syncBodyFrom.set(rootProject.file("README.md").readText())
changelog.set(rootProject.file("CHANGELOG.md").readText())
Expand Down
3 changes: 3 additions & 0 deletions fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ tasks {
remapJar {
archiveBaseName.set("hurricane-fabric")
}
remapModrinthJar {
archiveBaseName.set("hurricane-fabric")
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions neoforge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ tasks {
remapJar {
archiveBaseName.set("hurricane-neoforge")
}
remapModrinthJar {
archiveBaseName.set("hurricane-neoforge")
}
}

modrinth {
Expand Down

0 comments on commit 738d0b7

Please sign in to comment.