diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a72359af4..75f8a12aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,8 +81,8 @@ jobs: - name: Check there are no uncommitted changes in git (to catch generated files that weren't committed) run: sbt '++ ${{ matrix.scala }}' checkGitNoUncommittedChanges - - name: Check Doc Site (2.13.15 only) - if: matrix.scala == '2.13.15' + - name: Chec Doc Site (2.13 only) + if: matrix.scala == '2.13' run: sbt '++ ${{ matrix.scala }}' docs/makeSite - name: Make target directories diff --git a/build.sbt b/build.sbt index 7c62ea547..5f2931cb7 100644 --- a/build.sbt +++ b/build.sbt @@ -68,8 +68,8 @@ ThisBuild / githubWorkflowBuildPostamble ++= Seq( ), WorkflowStep.Sbt( commands = List("docs/makeSite"), - name = Some(s"Check Doc Site ($scala213Version only)"), - cond = Some(s"matrix.scala == '$scala213Version'") + name = Some(s"Check Doc Site (2.13 only)"), + cond = Some(s"matrix.scala == '2.13'") ) )