File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -188,4 +188,9 @@ publishing {
188188 useInMemoryPgpKeys(SIGNING_KEY_ID , SIGNING_KEY , SIGNING_PASSWORD )
189189 sign(publishing.publications)
190190 }
191+ }
192+
193+ // TODO: remove after https://youtrack.jetbrains.com/issue/KT-46466 is fixed
194+ project.tasks.withType(AbstractPublishToMaven ::class .java).configureEach {
195+ dependsOn(project.tasks.withType(Sign ::class .java))
191196}
Original file line number Diff line number Diff line change @@ -219,4 +219,9 @@ publishing {
219219 useInMemoryPgpKeys(SIGNING_KEY_ID , SIGNING_KEY , SIGNING_PASSWORD )
220220 sign(publishing.publications)
221221 }
222+ }
223+
224+ // TODO: remove after https://youtrack.jetbrains.com/issue/KT-46466 is fixed
225+ project.tasks.withType(AbstractPublishToMaven ::class .java).configureEach {
226+ dependsOn(project.tasks.withType(Sign ::class .java))
222227}
You can’t perform that action at this time.
0 commit comments