Skip to content

Commit

Permalink
Fix GitHub Actions for docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-lee committed Apr 3, 2024
1 parent 12b2f3a commit e8c5b78
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/m-doc-site-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ jobs:
matrix:
scala:
- { version: "2.13.10", binary-version: "2.13", java-version: "11" }
node:
- { version: "18.13.0" }

steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.scala.java-version }}
- uses: actions/setup-node@v1
- uses: actions/setup-node@v4
with:
node-version: '14.4.0'
node-version: ${{ matrix.node.version }}
registry-url: 'https://registry.npmjs.org'

- name: Cache SBT
Expand Down Expand Up @@ -52,6 +54,7 @@ jobs:
-J-Xmx2048m \
++${{ matrix.scala.version }}! \
clean \
docs/clean \
docs/mdoc \
docs/docusaurGenerateAlgoliaConfigFile \
docs/docusaurGenerateGoogleAnalyticsConfigFile \
Expand Down

0 comments on commit e8c5b78

Please sign in to comment.