Skip to content

Commit

Permalink
minor refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
rolang committed Jul 7, 2024
1 parent 2b7c18c commit 6265281
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ inThisBuild(
ciReleaseJobs := ciReleaseJobs.value.map(j =>
j.copy(
steps = j.steps.map {
case s @ Step.SingleStep("Release", _, _, _, _, _, _) =>
case Step.SingleStep(name @ "Release", _, _, _, _, _, env) =>
Step.SingleStep(
name = s.name,
name = name,
run = Some("sbt '+publishSigned; sonatypeCentralRelease'"),
env = s.env,
env = env,
)
case s => s
},
Expand Down

0 comments on commit 6265281

Please sign in to comment.