Skip to content

Commit

Permalink
fix signing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex009 committed May 27, 2024
1 parent 42740c1 commit 23b3b91
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ allprojects {
}
}
}

val signingTasks = tasks.withType<Sign>()
tasks.withType<AbstractPublishToMaven>().configureEach {
dependsOn(signingTasks)
}
}

tasks.register("clean", Delete::class).configure {
Expand Down

0 comments on commit 23b3b91

Please sign in to comment.