forked from brianhsu/Live2DForScala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.sbt
17 lines (16 loc) · 946 Bytes
/
release.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import ReleaseTransformations._
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies, // : ReleaseStep
inquireVersions, // : ReleaseStep
runClean, // : ReleaseStep
setReleaseVersion, // : ReleaseStep
commitReleaseVersion, // : ReleaseStep, performs the initial git checks
tagRelease, // : ReleaseStep
publishArtifacts, // : ReleaseStep, checks whether `publishTo` is properly set up
releaseStepCommand("exampleSwing/assembly"),
releaseStepCommand("exampleSWTLinux/assembly"),
releaseStepCommand("exampleSWTWin/assembly"),
setNextVersion, // : ReleaseStep
commitNextVersion, // : ReleaseStep
pushChanges // : ReleaseStep, also checks that an upstream branch is properly configured
)