Skip to content

Commit eeb9763

Browse files
franciscodrjuanpedromoreno
authored andcommitted
Fix publish workflow (#95)
1 parent c6409a1 commit eeb9763

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

filesystem/build.gradle.kts

+4
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,7 @@ kotlin {
6363
}
6464
}
6565
}
66+
67+
tasks.withType<AbstractPublishToMaven> {
68+
dependsOn(tasks.withType<Sign>())
69+
}

kotlin-loom/build.gradle.kts

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ plugins {
22
id(libs.plugins.kotlin.jvm.get().pluginId)
33
alias(libs.plugins.spotless)
44
alias(libs.plugins.arrow.gradle.publish)
5+
alias(libs.plugins.semver.gradle)
56
}
67

78
repositories {
@@ -57,3 +58,7 @@ spotless {
5758
ktfmt().googleStyle()
5859
}
5960
}
61+
62+
tasks.withType<AbstractPublishToMaven> {
63+
dependsOn(tasks.withType<Sign>())
64+
}

tokenizer/build.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,6 @@ kotlin {
8181
}
8282
}
8383

84+
tasks.withType<AbstractPublishToMaven> {
85+
dependsOn(tasks.withType<Sign>())
86+
}

0 commit comments

Comments
 (0)