Improve workflow

This commit is contained in:
ThisTestUser
2024-09-23 13:13:33 +00:00
parent fc4a8645fa
commit dc97d663d0
3 changed files with 13 additions and 7 deletions

View File

@@ -41,3 +41,9 @@ tasks.register("copyPlugin", Copy::class.java) {
from("build/libs/" + jarName + ".jar")
into("run/plugins")
}
tasks.register("getJarName") {
doLast {
println(jarName + ".jar")
}
}