Skip to content

Commit

Permalink
Call sonatypeRelease in publishSigned
Browse files Browse the repository at this point in the history
  • Loading branch information
hugo-vrijswijk committed Mar 29, 2019
1 parent fd4220b commit 021325d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion project/Release.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ object Release {
private val publishM2 = "stryker4s-core/publishM2"
private val crossPublish = "+publish"
private val crossPublishSigned = "+publishSigned"
private val sonatypeRelease = "sonatypeRelease"

lazy val releaseCommands: Setting[Seq[Command]] = commands ++= {
Seq(
// Called by sbt-ci-release
Command.command(stryker4sPublish)(crossPublish :: publishM2 :: stryker4sMvnDeploy :: _),
Command.command(stryker4sPublishSigned)(crossPublishSigned :: publishM2 :: stryker4sMvnDeploy :: _),
Command.command(stryker4sPublishSigned)(
crossPublishSigned :: publishM2 :: sonatypeRelease :: stryker4sMvnDeploy :: _),
// Called by stryker4sPublish(signed)
Command.command(stryker4sMvnDeploy)(mvnDeploy(baseDirectory.value, version.value))
)
Expand Down

0 comments on commit 021325d

Please sign in to comment.