Fix CF publishing

This commit is contained in:
embeddedt 2023-06-12 10:42:33 -04:00
parent fcd6663835
commit 9c76052be0
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -189,10 +189,10 @@ configure(subprojects.findAll {it.name == "forge" || it.name == "fabric"}) {
apiKey = System.getenv("CURSEFORGE_TOKEN") apiKey = System.getenv("CURSEFORGE_TOKEN")
project { project {
id = "790626" id = "790626"
changelog = file('CHANGELOG.md') changelog = file('../CHANGELOG.md')
changelogType = "markdown" changelogType = "markdown"
releaseType = isBeta ? "beta" : "release" releaseType = isBeta ? "beta" : "release"
addGameVersion project.name addGameVersion project.name.capitalize()
gameVersionStrings.addAll(supported_minecraft_versions.tokenize(",")) gameVersionStrings.addAll(supported_minecraft_versions.tokenize(","))
mainArtifact remapJar mainArtifact remapJar
} }