Skip to content

Commit 576b3d8

Browse files
ci: only warn on gpg failure
1 parent f64d44b commit 576b3d8

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

build.sbt

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,27 @@ ThisBuild / autoAPIMappings := true
2424

2525
ThisBuild / gpgWarnOnFailure := true
2626
ThisBuild / publish / gpgWarnOnFailure := true
27+
gpgWarnOnFailure := true
28+
publish / gpgWarnOnFailure := true
29+
gpgWarnOnFailure := true
30+
publish / gpgWarnOnFailure := true
2731

2832
lazy val sharedSettings = Seq(
29-
organizationName := "Funktional.io",
33+
organizationName := "Funktional.io",
3034
libraryDependencies ++= Seq("org.scalameta" %% "munit" % versions.munit.core % Test),
31-
scalaVersion := versions.scala,
35+
scalaVersion := versions.scala,
3236
// Headers
33-
headerMappings := headerMappings.value + (HeaderFileType.scala -> HeaderCommentStyle.cppStyleLineComment),
34-
headerLicense := Some(HeaderLicense.Custom(
35-
"""|Copyright (c) 2024-2024 by Raphaël Lemaitre and Contributors
37+
headerMappings := headerMappings.value + (HeaderFileType.scala -> HeaderCommentStyle.cppStyleLineComment),
38+
headerLicense := Some(
39+
HeaderLicense.Custom(
40+
"""|Copyright (c) 2024-2024 by Raphaël Lemaitre and Contributors
3641
|This software is licensed under the Eclipse Public License v2.0 (EPL-2.0).
3742
|For more information see LICENSE or https://opensource.org/license/epl-2-0
3843
|""".stripMargin
39-
))
44+
)
45+
),
46+
gpgWarnOnFailure := true,
47+
publish / gpgWarnOnFailure := true
4048
)
4149

4250
enablePlugins(ScalaUnidocPlugin)

0 commit comments

Comments
 (0)