Skip to content

Commit

Permalink
Merge pull request #102 from hnaderi/update/sbt-typelevel-0.6.2
Browse files Browse the repository at this point in the history
Update sbt-typelevel, sbt-typelevel-site to 0.6.2
  • Loading branch information
mergify[bot] authored Nov 17, 2023
2 parents 68a04f8 + 60deb2f commit efab8d2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
java: [temurin@8]
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
Expand All @@ -241,6 +241,19 @@ jobs:
if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false'
run: sbt +update

- name: Setup Java (temurin@11)
id: setup-java-temurin-11
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
cache: sbt

- name: sbt update
if: matrix.java == 'temurin@11' && steps.setup-java-temurin-11.outputs.cache-hit == 'false'
run: sbt +update

- name: Generate site
run: sbt docs/tlSite

Expand Down
8 changes: 7 additions & 1 deletion project/WebsitePlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ object WebsitePlugin extends AutoPlugin {
)
.site
.mainNavigation(appendLinks =
Seq(ThemeNavigationSection("Related projects", relatedProjectLinks))
Seq(
ThemeNavigationSection(
"Related projects",
relatedProjectLinks.head,
relatedProjectLinks.tail: _*
)
)
)
}
)
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.5.4")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.5.4")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.2")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.2")

0 comments on commit efab8d2

Please sign in to comment.