Skip to content

Commit ed26c6c

Browse files
authored
fix output paths
1 parent 6ada329 commit ed26c6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/create_website.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
- name: Build Website
3434
shell: bash -el {0}
3535
run: |
36-
jupyter kernelspec list
37-
jupyter nbconvert --execute --to html website_figure/myfigure.ipynb
36+
cd website_figure
37+
jupyter nbconvert myfigure.ipynb --execute --to html --output-dir=_build/html
3838
3939
- name: Upload artifact
4040
uses: actions/upload-pages-artifact@v3
4141
with:
42-
path: website_figure/myfigure.html
42+
path: website_figure/_build/html
4343

4444

4545
# Publish Website to GitHub Pages if built successfully

0 commit comments

Comments
 (0)