Skip to content

Commit 23bb9f0

Browse files
feat: added jupyter notebook to HTML
1 parent 934b974 commit 23bb9f0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/pages_deploy.yml

+13
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,19 @@ jobs:
3333
steps:
3434
- name: Checkout
3535
uses: actions/checkout@v4
36+
37+
- name: Set up Python
38+
uses: actions/setup-python@v2
39+
with:
40+
python-version: '3.9'
41+
42+
- name: Install Jupyter
43+
run: pip install notebook
44+
45+
- name: Convert notebook to HTML
46+
run: |
47+
jupyter nbconvert --to html notebooks/data_explorer.ipynb --output docs/index.html
48+
3649
- name: Setup Pages
3750
uses: actions/configure-pages@v5
3851
- name: Upload artifact

0 commit comments

Comments
 (0)