Skip to content

Commit

Permalink
fix: do not auto-run zip on validation
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK committed Dec 7, 2024
1 parent ea7545c commit a106316
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ internal object ProjectExtensions {
tasks.register(PublishPortalDeployment.VALIDATE_TASK_NAME) { validate ->
group = PublishingPlugin.PUBLISH_TASK_GROUP
description = "Validates the Maven Central Portal publication, uploading if needed"
validate.dependsOn(zipMavenCentralPortal)
validate.mustRunAfter(zipMavenCentralPortal)
validate.doLast {
runBlocking {
portalDeployment.validate()
Expand Down

0 comments on commit a106316

Please sign in to comment.