mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-12-19 14:59:27 +00:00
21 lines
713 B
Plaintext
21 lines
713 B
Plaintext
plugins {
|
|
id("com.modrinth.minotaur")
|
|
}
|
|
|
|
// Ensure that the readme is synched
|
|
tasks.modrinth.get().dependsOn(tasks.modrinthSyncBody)
|
|
|
|
modrinth {
|
|
token.set(System.getenv("MODRINTH_TOKEN") ?: "") // Even though this is the default value, apparently this prevents GitHub Actions caching the token?
|
|
debugMode.set(System.getenv("MODRINTH_TOKEN") == null)
|
|
projectId.set("geyser")
|
|
versionName.set(versionName(project))
|
|
versionNumber.set(projectVersion(project))
|
|
versionType.set("beta")
|
|
changelog.set(System.getenv("CHANGELOG") ?: "")
|
|
gameVersions.add(libs.minecraft.get().version as String)
|
|
failSilently.set(true)
|
|
|
|
syncBodyFrom.set(rootProject.file("README.md").readText())
|
|
}
|