Skip to content

Commit

Permalink
Try to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
psychemedia committed Aug 22, 2024
1 parent b241a75 commit 56c54c2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,34 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install mamba
uses: mamba-org/setup-micromamba@v1
with:
python-version: '3.10'
micromamba-version: '1.5.8-0'
environment-file: build_environment.yml
cache-environment: true

- name: Install the dependencies
run: |
python -m pip install -r requirements.txt
- name: Build the JupyterLite site
run: |
cp README*.md content
jupyter lite build --contents content --output-dir dist
- name: Build JupyterBook site
run: |
python -m pip install -r requirements-jb.txt
jupyter kernelspec list
jupyter-book build content/work --path-output book_output
cp -r book_output/_build/html dist/book_output/
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
Expand Down
File renamed without changes.

0 comments on commit 56c54c2

Please sign in to comment.