Skip to content

Commit

Permalink
Update sbt-typelevel-ci-release, ... to 0.7.1 (#815)
Browse files Browse the repository at this point in the history
* Update sbt-typelevel-ci-release, ... to 0.7.1

* Adjust WorkflowStep.Sbt constructor

---------

Co-authored-by: typelevel-steward[bot] <106827141+typelevel-steward[bot]@users.noreply.github.com>
Co-authored-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
  • Loading branch information
typelevel-steward[bot] and pomadchin authored May 11, 2024
1 parent 84381cf commit 003ab1e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ jobs:

- name: Publish site
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v3.9.3
uses: peaceiris/actions-gh-pages@v4.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: mdocs/target/docs/site
Expand Down
4 changes: 2 additions & 2 deletions github.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ThisBuild / githubWorkflowBuildSbtStepPreamble += s"project $${{ matrix.project
ThisBuild / tlCiScalafmtCheck := true
ThisBuild / githubWorkflowBuild ~= { steps =>
steps.map { // replace the test step
case _ @WorkflowStep.Sbt(List("test"), _, _, _, _, _, _, _) =>
case step: WorkflowStep.Sbt if step.commands == List("test") =>
WorkflowStep.Sbt(
List("coverage", "test", "test/coverageReport"),
commands = List("coverage", "test", "test/coverageReport"),
name = Some("Test & Compute Coverage")
)
case step => step
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val sbtTypelevelVersion = "0.6.7"
val sbtTypelevelVersion = "0.7.1"

addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % sbtTypelevelVersion)

Expand Down

0 comments on commit 003ab1e

Please sign in to comment.