Skip to content

Commit 3ae1bd4

Browse files
committed
Fix sbt version and publish only for cogen
1 parent 12cda7d commit 3ae1bd4

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/test_and_release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
java-version: 21
2525
- name: Set up SBT
2626
if: steps.check_head_of_master.outputs.head_of_main == steps.check_head_of_main.outputs.current_job_ref
27-
uses: sbt/setup-sbt@v1.10.11
27+
uses: sbt/setup-sbt@v1.1.16
28+
with:
29+
sbt-runner-version: 1.10.11
2830
- name: Build and release
2931
if: steps.check_head_of_master.outputs.head_of_main == steps.check_head_of_main.outputs.current_job_ref
3032
env:

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ lazy val commonSettings = Seq(
3131
"org.typelevel" %% "cats-effect" % "3.6.1"
3232
),
3333
evictionErrorLevel := Level.Info,
34-
) ++ publishSettings
34+
)
3535

3636
lazy val publishSettings = Seq(
3737
homepage := Some(url("https://combinators.org")),
@@ -59,7 +59,7 @@ lazy val cogen = (Project(id = "cogen", base = file("cogen")))
5959
.settings(commonSettings: _*)
6060
.settings(
6161
moduleName := "expression-problem-cogen",
62-
)
62+
) ++ publishSettings
6363

6464

6565
/** The core components to model expression problem code generators and domains.

0 commit comments

Comments
 (0)