Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-12-27 00:22:51 +01:00
[ci skip] Only publish releases from the main branch
Dieser Commit ist enthalten in:
Ursprung
489b28e520
Commit
e30dd63b3c
@ -46,59 +46,62 @@ publishShadowJar()
|
|||||||
val branch = rootProject.branchName()
|
val branch = rootProject.branchName()
|
||||||
val baseVersion = project.version as String
|
val baseVersion = project.version as String
|
||||||
val isRelease = !baseVersion.contains('-')
|
val isRelease = !baseVersion.contains('-')
|
||||||
val suffixedVersion = if (isRelease) baseVersion else baseVersion + "+" + System.getenv("GITHUB_RUN_NUMBER")
|
|
||||||
val changelogContent = if (isRelease) {
|
|
||||||
"See [GitHub](https://github.com/ViaVersion/ViaVersion) for release notes."
|
|
||||||
} else {
|
|
||||||
val commitHash = rootProject.latestCommitHash()
|
|
||||||
"[$commitHash](https://github.com/ViaVersion/ViaVersion/commit/$commitHash) ${rootProject.latestCommitMessage()}"
|
|
||||||
}
|
|
||||||
val isMainBranch = branch == "master"
|
val isMainBranch = branch == "master"
|
||||||
modrinth {
|
if (!isRelease || isMainBranch) { // Only publish releases from the main branch
|
||||||
val mcVersions: List<String> = (property("mcVersions") as String)
|
val suffixedVersion = if (isRelease) baseVersion else baseVersion + "+" + System.getenv("GITHUB_RUN_NUMBER")
|
||||||
.split(",")
|
val changelogContent = if (isRelease) {
|
||||||
.map { it.trim() }
|
"See [GitHub](https://github.com/ViaVersion/ViaVersion) for release notes."
|
||||||
token.set(System.getenv("MODRINTH_TOKEN"))
|
} else {
|
||||||
projectId.set("viaversion")
|
val commitHash = rootProject.latestCommitHash()
|
||||||
versionType.set(if (isRelease) "release" else if (isMainBranch) "beta" else "alpha")
|
"[$commitHash](https://github.com/ViaVersion/ViaVersion/commit/$commitHash) ${rootProject.latestCommitMessage()}"
|
||||||
versionNumber.set(suffixedVersion)
|
|
||||||
versionName.set(suffixedVersion)
|
|
||||||
changelog.set(changelogContent)
|
|
||||||
uploadFile.set(tasks.shadowJar.flatMap { it.archiveFile })
|
|
||||||
gameVersions.set(mcVersions)
|
|
||||||
loaders.add("fabric")
|
|
||||||
loaders.add("paper")
|
|
||||||
loaders.add("folia")
|
|
||||||
loaders.add("velocity")
|
|
||||||
loaders.add("bungeecord")
|
|
||||||
loaders.add("sponge")
|
|
||||||
autoAddDependsOn.set(false)
|
|
||||||
detectLoaders.set(false)
|
|
||||||
dependencies {
|
|
||||||
optional.project("viafabric")
|
|
||||||
optional.project("viafabricplus")
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
hangarPublish {
|
modrinth {
|
||||||
publications.register("plugin") {
|
val mcVersions: List<String> = (property("mcVersions") as String)
|
||||||
version.set(suffixedVersion)
|
.split(",")
|
||||||
id.set("ViaVersion")
|
.map { it.trim() }
|
||||||
channel.set(if (isRelease) "Release" else if (isMainBranch) "Snapshot" else "Alpha")
|
token.set(System.getenv("MODRINTH_TOKEN"))
|
||||||
|
projectId.set("viaversion")
|
||||||
|
versionType.set(if (isRelease) "release" else if (isMainBranch) "beta" else "alpha")
|
||||||
|
versionNumber.set(suffixedVersion)
|
||||||
|
versionName.set(suffixedVersion)
|
||||||
changelog.set(changelogContent)
|
changelog.set(changelogContent)
|
||||||
apiKey.set(System.getenv("HANGAR_TOKEN"))
|
uploadFile.set(tasks.shadowJar.flatMap { it.archiveFile })
|
||||||
platforms {
|
gameVersions.set(mcVersions)
|
||||||
register(Platforms.PAPER) {
|
loaders.add("fabric")
|
||||||
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
|
loaders.add("paper")
|
||||||
platformVersions.set(listOf(property("mcVersionRange") as String))
|
loaders.add("folia")
|
||||||
}
|
loaders.add("velocity")
|
||||||
register(Platforms.VELOCITY) {
|
loaders.add("bungeecord")
|
||||||
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
|
loaders.add("sponge")
|
||||||
platformVersions.set(listOf(property("velocityVersion") as String))
|
autoAddDependsOn.set(false)
|
||||||
}
|
detectLoaders.set(false)
|
||||||
register(Platforms.WATERFALL) {
|
dependencies {
|
||||||
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
|
optional.project("viafabric")
|
||||||
platformVersions.set(listOf(property("waterfallVersion") as String))
|
optional.project("viafabricplus")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
hangarPublish {
|
||||||
|
publications.register("plugin") {
|
||||||
|
version.set(suffixedVersion)
|
||||||
|
id.set("ViaVersion")
|
||||||
|
channel.set(if (isRelease) "Release" else if (isMainBranch) "Snapshot" else "Alpha")
|
||||||
|
changelog.set(changelogContent)
|
||||||
|
apiKey.set(System.getenv("HANGAR_TOKEN"))
|
||||||
|
platforms {
|
||||||
|
register(Platforms.PAPER) {
|
||||||
|
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
|
||||||
|
platformVersions.set(listOf(property("mcVersionRange") as String))
|
||||||
|
}
|
||||||
|
register(Platforms.VELOCITY) {
|
||||||
|
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
|
||||||
|
platformVersions.set(listOf(property("velocityVersion") as String))
|
||||||
|
}
|
||||||
|
register(Platforms.WATERFALL) {
|
||||||
|
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
|
||||||
|
platformVersions.set(listOf(property("waterfallVersion") as String))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren