Skip to content

Commit d5105de

Browse files
committed
fixes
1 parent 22ae07d commit d5105de

File tree

3 files changed

+21
-26
lines changed

3 files changed

+21
-26
lines changed

.github/workflows/book.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/pipeline.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,24 @@ jobs:
8989
papermill aiida_simple.ipynb aiida_simple_out.ipynb -k "python3"
9090
papermill jobflow_simple.ipynb jobflow_simple_out.ipynb -k "python3"
9191
papermill pyiron_base_simple.ipynb pyiron_base_simple_out.ipynb -k "python3"
92-
papermill universal_workflow_simple.ipynb universal_workflow_simple_out.ipynb -k "python3"
92+
papermill universal_workflow_simple.ipynb universal_workflow_simple_out.ipynb -k "python3"
93+
94+
book:
95+
runs-on: ubuntu-latest
96+
steps:
97+
- uses: actions/checkout@v4
98+
- uses: conda-incubator/setup-miniconda@v3
99+
with:
100+
auto-update-conda: true
101+
python-version: "3.12"
102+
environment-file: book/environment.yml
103+
auto-activate-base: false
104+
- name: Install Jupyterbook
105+
shell: bash -l {0}
106+
run: |
107+
cp book/_config.yml .
108+
cp book/_toc.yml .
109+
cp book/*.md .
110+
jupyter-book build . --path-output public
111+
- run: mv public/_build/html public_html
112+
- run: touch public_html/.nojekyll
File renamed without changes.

0 commit comments

Comments
 (0)