Skip to content
This repository was archived by the owner on Feb 8, 2022. It is now read-only.

Commit 6c0fc5a

Browse files
committed
fix release settings
1 parent 0d96754 commit 6c0fc5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ lazy val commonSettings = Seq(
111111
lazy val algebraSettings = buildSettings ++ commonSettings ++ publishSettings
112112

113113
lazy val nativeSettings = Seq(
114-
crossScalaVersions ~= (_.filterNot(Scala300.contains))
114+
crossScalaVersions ~= (_.filterNot(Scala300.contains)),
115+
publishConfiguration := publishConfiguration.value.withOverwrite(true) // needed since we double-publish on release
115116
)
116117

117118
lazy val docsMappingsAPIDir =
@@ -290,13 +291,12 @@ lazy val publishSettings = Seq(
290291
</developers>
291292
),
292293
releaseProcess := Seq[ReleaseStep](
293-
checkSnapshotDependencies,
294294
inquireVersions,
295295
runTest,
296296
setReleaseVersion,
297297
commitReleaseVersion,
298298
tagRelease,
299-
publishArtifacts,
299+
releaseStepCommandAndRemaining("+publishSigned"),
300300
setNextVersion,
301301
commitNextVersion,
302302
releaseStepCommand("sonatypeReleaseAll"),

0 commit comments

Comments
 (0)