Skip to content

Commit

Permalink
Fix website publishing (#740)
Browse files Browse the repository at this point in the history
* Bump website release java version to 11, for mdoc

Mdoc had to switch to Java 11+
  • Loading branch information
antonsviridov-src authored Aug 20, 2024
1 parent 10e9f08 commit d314dd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 17
java-version: 11
cache: "sbt"

- run: sbt checkAll
- run: sbt --client checkAll

- name: Run sample benchmarks
run: sbt 'bench/Jmh/run -i 1 -f1 -t1 -foe true'
run: sbt --client 'bench/Jmh/run -i 1 -f1 -t1 -foe true'


maven:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 8
java-version: 11
cache: 'sbt'
- run: sbt docs/docusaurusPublishGhpages
env:
Expand Down

0 comments on commit d314dd8

Please sign in to comment.