Skip to content

Commit 1920974

Browse files
committed
add quotes around scala version
1 parent 6a20320 commit 1920974

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
run: sbt ++${{ matrix.scala }} ci
6767

6868
- name: Run unidoc
69-
if: matrix.scala == 2.13.7
69+
if: matrix.scala == '2.13.7'
7070
run: sbt ++${{ matrix.scala }} unidoc
7171

7272
- name: Compile Docs

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ ThisBuild / githubWorkflowBuild := Seq(
187187
WorkflowStep.Sbt(List("scalafmtCheckAll"), name = Some("Check Formatting")),
188188
WorkflowStep.Run(List("docker-compose up -d"), name = Some("Setup Dependencies")),
189189
WorkflowStep.Sbt(List("ci"), name = Some("Run ci task from sbt-spiewak")),
190-
WorkflowStep.Sbt(List("unidoc"), name = Some("Run unidoc"), cond = Some(s"matrix.scala == $Scala213")),
190+
WorkflowStep.Sbt(List("unidoc"), name = Some("Run unidoc"), cond = Some(s"matrix.scala == '$Scala213'")),
191191
WorkflowStep.Sbt(List("docs/mdoc"), name = Some("Compile Docs"))
192192
)
193193
ThisBuild / githubWorkflowEnv += ("GPG_TTY" -> "$(tty)")

0 commit comments

Comments
 (0)