Skip to content

Commit 080f9a6

Browse files
authored
Rename book to documentation (#76)
* Rename book to documentation * rename CI action * clean up actions * fix env * fix format
1 parent 9c60a2f commit 080f9a6

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
with:
1414
auto-update-conda: true
1515
python-version: "3.12"
16-
environment-file: book/environment.yml
16+
environment-file: documentation/environment.yml
1717
auto-activate-base: false
1818
- name: Install Jupyterbook
1919
shell: bash -l {0}
2020
run: |
21-
cp book/_config.yml .
22-
cp book/_toc.yml .
23-
cp book/*.md .
21+
cp documentation/_config.yml .
22+
cp documentation/_toc.yml .
23+
cp documentation/*.md .
2424
jupyter-book build . --path-output public
25-
- run: mv public/_build/html public_html
26-
- run: touch public_html/.nojekyll
25+
mv public/_build/html public_html
26+
touch public_html/.nojekyll
2727
- name: Deploy 🚀
2828
uses: JamesIves/github-pages-deploy-action@3.7.1
2929
with:

.github/workflows/pipeline.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,22 +107,22 @@ jobs:
107107
papermill pyiron_base.ipynb pyiron_base_out.ipynb -k "python3"
108108
papermill universal_workflow.ipynb universal_workflow_out.ipynb -k "python3"
109109
110-
book:
110+
documentation:
111111
runs-on: ubuntu-latest
112112
steps:
113113
- uses: actions/checkout@v4
114114
- uses: conda-incubator/setup-miniconda@v3
115115
with:
116116
auto-update-conda: true
117117
python-version: "3.12"
118-
environment-file: book/environment.yml
118+
environment-file: documentation/environment.yml
119119
auto-activate-base: false
120120
- name: Install Jupyterbook
121121
shell: bash -l {0}
122122
run: |
123-
cp book/_config.yml .
124-
cp book/_toc.yml .
125-
cp book/*.md .
123+
cp documentation/_config.yml .
124+
cp documentation/_toc.yml .
125+
cp documentation/*.md .
126126
jupyter-book build . --path-output public
127-
- run: mv public/_build/html public_html
128-
- run: touch public_html/.nojekyll
127+
mv public/_build/html public_html
128+
touch public_html/.nojekyll
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)