Skip to content

Commit 8b3b865

Browse files
committed
Adapt conditional action to new matrix format
1 parent 3e1f34b commit 8b3b865

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
if: matrix.java == 'temurin@8' && matrix.os == 'ubuntu-22.04'
8282
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' doc
8383

84-
- if: matrix.scala == '2.13.16'
84+
- if: matrix.scala == '2.13'
8585
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' docs/mdoc
8686

8787
- name: Make target directories

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ lazy val docs = project
6969
ThisBuild / githubWorkflowBuildPostamble ++= List(
7070
WorkflowStep.Sbt(
7171
List("docs/mdoc"),
72-
cond = Some(s"matrix.scala == '$Scala213'")
72+
cond = Some(s"matrix.scala == '2.13'")
7373
)
7474
)
7575

0 commit comments

Comments
 (0)