File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -90,10 +90,16 @@ jobs:
9090 run : julia --project=@. --color=yes -p ${{ env.LITERATE_PROC }} .github/ci.jl
9191 - name : Copy back built notebooks
9292 run : cp --verbose -rf ${{ env.NBCACHE }}/docs/* docs/
93+ - name : Setup NodeJS
94+ uses : actions/setup-node@v6
95+ with :
96+ node-version : ' lts/*'
9397 - name : Build website
9498 env :
9599 BASE_URL : /${{ github.event.repository.name }}
96- run : jupyter book build --html --strict
100+ run : |
101+ npm install -g "jupyter-book"
102+ jupyter-book build --html --strict
97103 - name : Upload pages artifact
98104 if : ${{ github.ref == 'refs/heads/main' }}
99105 uses : actions/upload-pages-artifact@v4
Original file line number Diff line number Diff line change 1- jupyter-book == 2.1.0
You can’t perform that action at this time.
0 commit comments