Skip to content

Commit

Permalink
Fix publish workflow (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscodr authored May 23, 2023
1 parent 53516f6 commit 3613a52
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions filesystem/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,7 @@ kotlin {
}
}
}

tasks.withType<AbstractPublishToMaven> {
dependsOn(tasks.withType<Sign>())
}
5 changes: 5 additions & 0 deletions kotlin-loom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id(libs.plugins.kotlin.jvm.get().pluginId)
alias(libs.plugins.spotless)
alias(libs.plugins.arrow.gradle.publish)
alias(libs.plugins.semver.gradle)
}

repositories {
Expand Down Expand Up @@ -57,3 +58,7 @@ spotless {
ktfmt().googleStyle()
}
}

tasks.withType<AbstractPublishToMaven> {
dependsOn(tasks.withType<Sign>())
}
3 changes: 3 additions & 0 deletions tokenizer/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,6 @@ kotlin {
}
}

tasks.withType<AbstractPublishToMaven> {
dependsOn(tasks.withType<Sign>())
}

0 comments on commit 3613a52

Please sign in to comment.