We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e1f34b commit 8b3b865Copy full SHA for 8b3b865
.github/workflows/ci.yml
@@ -81,7 +81,7 @@ jobs:
81
if: matrix.java == 'temurin@8' && matrix.os == 'ubuntu-22.04'
82
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' doc
83
84
- - if: matrix.scala == '2.13.16'
+ - if: matrix.scala == '2.13'
85
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' docs/mdoc
86
87
- name: Make target directories
build.sbt
@@ -69,7 +69,7 @@ lazy val docs = project
69
ThisBuild / githubWorkflowBuildPostamble ++= List(
70
WorkflowStep.Sbt(
71
List("docs/mdoc"),
72
- cond = Some(s"matrix.scala == '$Scala213'")
+ cond = Some(s"matrix.scala == '2.13'")
73
)
74
75
0 commit comments