Skip to content

Commit 4aeaa95

Browse files
authored
Merge pull request #61 from qiaoyuang/main
Try to fix the publishing failed
2 parents 3a7acf8 + e6664ec commit 4aeaa95

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

sqllin-driver/build.gradle.kts

+5
Original file line numberDiff line numberDiff 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
}

sqllin-dsl/build.gradle.kts

+5
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)