fix(resource-pack-entry-widgets): actually build
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/jfmod Pipeline was successful

This commit is contained in:
Johannes Frohnmeyer 2024-07-17 21:52:38 +02:00
parent 4c3e81570c
commit 970bc681f3
Signed by: Johannes
GPG Key ID: E76429612C2929F4

View File

@ -1,3 +1,5 @@
import io.gitlab.jfronny.scripts.deployDebug
import io.gitlab.jfronny.scripts.deployRelease
import io.gitlab.jfronny.scripts.versionS
plugins {
@ -17,6 +19,11 @@ dependencies {
implementation(libs.neoforge)
}
tasks.publish { dependsOn(tasks.build) }
tasks.deployDebug.dependsOn(tasks.publish)
rootProject.tasks.deployDebug.dependsOn(tasks.deployDebug)
rootProject.tasks.deployRelease.dependsOn(tasks.deployRelease)
tasks.processResources {
val map = mapOf(
"version" to project.versionS,