Remove sonatype commands that shouldn't be run in release process

This commit is contained in:
Matthew de Detrich 2023-07-26 12:22:34 +02:00 committed by Matthew de Detrich
parent 60b13b4872
commit 8109724747

View file

@ -18,6 +18,12 @@ ThisBuild / versionScheme := Some(VersionScheme.SemVerSpec)
sourceDistName := "apache-pekko"
sourceDistIncubating := true
commands := commands.value.filterNot { command =>
command.nameOption.exists { name =>
name.contains("sonatypeRelease") || name.contains("sonatypeBundleRelease")
}
}
enablePlugins(
UnidocRoot,
UnidocWithPrValidation,