Skip to content

Commit

Permalink
fix skipping makeSite in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jatcwang committed Dec 8, 2024
1 parent c80b71e commit 5b0bd82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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'")
)
)

Expand Down

0 comments on commit 5b0bd82

Please sign in to comment.