Skip to content

Commit fbe2203

Browse files
committed
Fix #504
Our release GitHub Actions job performs the release for SJS 0.6 and 1.0 in parallel. This prevents each parallel processes from removing each other's deployment.
1 parent 2471029 commit fbe2203

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build.sbt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ import scalatex.ScalatexReadme
33

44
ThisBuild / shellPrompt := ((s: State) => Project.extract(s).currentRef.project + "> ")
55

6+
// Issue #504 - remove on 2.x branch
7+
// Our release GitHub Actions job performs the release for SJS 0.6 and 1.0 in parallel.
8+
// This prevents each parallel processes from removing each other's deployment.
9+
sonatypeSessionName := s"${name.value} v${version.value} (SJS $scalaJSVersion)"
10+
611
lazy val scalafixRules = project
712
.in(file("scalafix"))
813
.settings(

0 commit comments

Comments
 (0)