We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3017687 commit 4e48a07Copy full SHA for 4e48a07
1 file changed
.github/workflows/notebook_to_html.yml
@@ -1,6 +1,6 @@
1
# This is a basic workflow to help you get started with Actions
2
3
-name: CI
+name: Jupyter Book
4
5
# Controls when the workflow will run
6
on:
@@ -26,11 +26,11 @@ jobs:
26
- uses: actions/checkout@v4
27
28
# Runs a set of commands using the runners shell
29
- - name: Run a multi-line script
+ - name: Install dependencies and build page
30
run: |
31
- mkdir -p website
32
- python -m pip install jupyter
33
- python -m jupyter nbconvert --output-dir='./website' --execute --to html lesson1_tutorial.ipynb
+ python -m pip install jupyter-book --pre
+ python3 -m jupyter book build --all --execute
+ cp -r _build/html website
34
35
- name: Setup git name
36
0 commit comments