Skip to content

Commit

Permalink
Made release process work for sbt cross building
Browse files Browse the repository at this point in the history
  • Loading branch information
albuch committed Aug 3, 2017
1 parent 508a9ea commit 55be337
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import sbt.{Project, _}
import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations._
import sbtrelease.ReleasePlugin.autoImport._
import sbtrelease.ReleaseStateTransformations.setNextVersion

val sbtDependencyCheck = project in file(".")

Expand Down Expand Up @@ -56,16 +57,16 @@ releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
releaseStepInputTask(scripted),
releaseStepCommandAndRemaining("^ test"),
releaseStepCommandAndRemaining("^ scripted"),
setReleaseVersion,
commitReleaseVersion,
setReleaseVersionInReadme,
tagRelease,
ReleaseStep(action = Command.process("publishSigned", _)),
releaseStepCommandAndRemaining("^ publishSigned"),
releaseStepCommandAndRemaining("sonatypeReleaseAll"),
setNextVersion,
commitNextVersion,
ReleaseStep(action = Command.process("sonatypeReleaseAll", _))
commitNextVersion
//,pushChanges
)

Expand Down

0 comments on commit 55be337

Please sign in to comment.