Skip to content

Commit

Permalink
Merge pull request #53 from momentohq/sign-before-publish
Browse files Browse the repository at this point in the history
fix: force signing to occur before publishing
  • Loading branch information
nand4011 authored Jan 12, 2024
2 parents 32b2e64 + cac6632 commit cce6837
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,9 @@ if (signingKey != null) {
sign(publishing.publications)
}
}

afterEvaluate {
tasks.named("publishAndroidReleasePublicationToSonatypeRepository").configure {
mustRunAfter(":signJvmPublication")
}
}

0 comments on commit cce6837

Please sign in to comment.