mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2024-11-18 14:13:46 +00:00
add crutch for publishing of artifacts
This commit is contained in:
parent
1a589c675e
commit
b4c454141e
@ -89,3 +89,11 @@ apply from: "defaultAndroidSettings.gradle"
|
|||||||
apply from: "github_release.gradle"
|
apply from: "github_release.gradle"
|
||||||
apply from: "publish.gradle"
|
apply from: "publish.gradle"
|
||||||
apply from: "dokka.gradle"
|
apply from: "dokka.gradle"
|
||||||
|
|
||||||
|
def publishTasks = tasks.findAll { it.name.containsIgnoreCase("publish") }
|
||||||
|
def signTasks = tasks.findAll { it.name.containsIgnoreCase("sign") }
|
||||||
|
publishTasks.forEach { task ->
|
||||||
|
signTasks.forEach {
|
||||||
|
task.dependsOn(it)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user