Add githubRelease as publish task dep

This commit is contained in:
comp500 2022-07-16 17:58:13 +01:00
parent d83c4f1abc
commit 43873ac7f9

View File

@ -137,6 +137,10 @@ tasks.githubRelease {
enabled = project.hasProperty("github.token") && project.findProperty("release") == "true"
}
tasks.publish {
dependsOn(githubRelease)
}
tasks.compileKotlin {
kotlinOptions {
jvmTarget = "1.8"