Skip to content

Commit

Permalink
disabling part of the build because the GH actions build failed
Browse files Browse the repository at this point in the history
  • Loading branch information
coutoPL committed Oct 26, 2023
1 parent d7ae37f commit cbd5fc2
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1973,26 +1973,26 @@ lazy val root = (project in file("."))
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
// dist can't be aggregates by root because it using root tasks so we need to add cleaning of it explicitly
// TODO: replace root tasks by some local tasks
releaseStepCommand("dist/clean"),
ReleaseStep { st: State =>
if (!st.get(ReleaseKeys.skipTests).getOrElse(false)) {
releaseStepCommandAndRemaining("+test")(st)
} else {
st
}
},
setReleaseVersion,
commitReleaseVersion,
tagRelease,
releaseStepCommand("buildClient"),
releaseStepCommandAndRemaining("+publishSigned"),
releaseStepCommand("dist/Universal/packageZipTarball"),
releaseStepCommandAndRemaining("+dist/Docker/publish"),
releaseStepCommandAndRemaining("+liteEngineRuntimeApp/Docker/publish"),
releaseStepCommand("sonatypeBundleRelease"),
// runClean,
// // dist can't be aggregates by root because it using root tasks so we need to add cleaning of it explicitly
// // TODO: replace root tasks by some local tasks
// releaseStepCommand("dist/clean"),
// ReleaseStep { st: State =>
// if (!st.get(ReleaseKeys.skipTests).getOrElse(false)) {
// releaseStepCommandAndRemaining("+test")(st)
// } else {
// st
// }
// },
// setReleaseVersion,
// commitReleaseVersion,
// tagRelease,
// releaseStepCommand("buildClient"),
// releaseStepCommandAndRemaining("+publishSigned"),
// releaseStepCommand("dist/Universal/packageZipTarball"),
// releaseStepCommandAndRemaining("+dist/Docker/publish"),
// releaseStepCommandAndRemaining("+liteEngineRuntimeApp/Docker/publish"),
// releaseStepCommand("sonatypeBundleRelease"),
setNextVersion,
commitNextVersion,
pushChanges
Expand Down

0 comments on commit cbd5fc2

Please sign in to comment.