diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f8649e3..db28f31 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,17 +13,17 @@ jobs: with: auto-update-conda: true python-version: "3.12" - environment-file: book/environment.yml + environment-file: documentation/environment.yml auto-activate-base: false - name: Install Jupyterbook shell: bash -l {0} run: | - cp book/_config.yml . - cp book/_toc.yml . - cp book/*.md . + cp documentation/_config.yml . + cp documentation/_toc.yml . + cp documentation/*.md . jupyter-book build . --path-output public - - run: mv public/_build/html public_html - - run: touch public_html/.nojekyll + mv public/_build/html public_html + touch public_html/.nojekyll - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@3.7.1 with: diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index d67ac99..d69c786 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -107,7 +107,7 @@ jobs: papermill pyiron_base.ipynb pyiron_base_out.ipynb -k "python3" papermill universal_workflow.ipynb universal_workflow_out.ipynb -k "python3" - book: + documentation: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -115,14 +115,14 @@ jobs: with: auto-update-conda: true python-version: "3.12" - environment-file: book/environment.yml + environment-file: documentation/environment.yml auto-activate-base: false - name: Install Jupyterbook shell: bash -l {0} run: | - cp book/_config.yml . - cp book/_toc.yml . - cp book/*.md . + cp documentation/_config.yml . + cp documentation/_toc.yml . + cp documentation/*.md . jupyter-book build . --path-output public - - run: mv public/_build/html public_html - - run: touch public_html/.nojekyll + mv public/_build/html public_html + touch public_html/.nojekyll diff --git a/book/_config.yml b/documentation/_config.yml similarity index 100% rename from book/_config.yml rename to documentation/_config.yml diff --git a/book/_toc.yml b/documentation/_toc.yml similarity index 100% rename from book/_toc.yml rename to documentation/_toc.yml diff --git a/book/arithmetic.md b/documentation/arithmetic.md similarity index 100% rename from book/arithmetic.md rename to documentation/arithmetic.md diff --git a/book/conclusion.md b/documentation/conclusion.md similarity index 100% rename from book/conclusion.md rename to documentation/conclusion.md diff --git a/book/environment.yml b/documentation/environment.yml similarity index 100% rename from book/environment.yml rename to documentation/environment.yml diff --git a/book/evcurve.md b/documentation/evcurve.md similarity index 100% rename from book/evcurve.md rename to documentation/evcurve.md diff --git a/book/intro.md b/documentation/intro.md similarity index 100% rename from book/intro.md rename to documentation/intro.md diff --git a/book/nfdi.md b/documentation/nfdi.md similarity index 100% rename from book/nfdi.md rename to documentation/nfdi.md