From c90e392216ed77fffc6645653e3b7085f6291b8d Mon Sep 17 00:00:00 2001 From: Tomasz Godzik Date: Fri, 15 Dec 2023 18:38:41 +0100 Subject: [PATCH] chore: Don't publish the docs module I merged the update for mdoc, which uses Java 11, but that is needed to publish the website. It seems the normal release tries to publish docs and that breaks because of the mdoc JVM requirement. This should fix the release. --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 5b73358d..bc327202 100644 --- a/build.sbt +++ b/build.sbt @@ -343,6 +343,7 @@ lazy val docs = project .disablePlugins(MimaPlugin) .settings( sharedSettings, + publish / skip := true, moduleName := "munit-docs", crossScalaVersions := List(scala213, scala212), test := {},