-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
24 lines (21 loc) · 811 Bytes
/
build.gradle.kts
File metadata and controls
24 lines (21 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import me.ultrusmods.missingwilds.gradle.Properties
plugins {
// Required for NeoGradle
id("org.jetbrains.gradle.plugin.idea-ext") version "1.1.7"
alias(libs.plugins.fabric.loom) apply false
alias(libs.plugins.neoforge.moddev) apply false
alias(libs.plugins.publishing)
}
publishMods {
changelog = rootProject.file("CHANGELOG.md").readText()
version = "${Properties.MOD}+${libs.minecraft.get().version}"
type = BETA
github {
accessToken = providers.gradleProperty("GH_TOKEN")
repository = Properties.GITHUB_REPO
tagName = "${Properties.MOD}+${libs.minecraft.get().version}"
commitish = Properties.GITHUB_COMMITISH
displayName = "Missing Wilds ${Properties.MOD}+${libs.minecraft.get().version}"
allowEmptyFiles = true
}
}