Skip to content

update poetry files #23

update poetry files

update poetry files #23

Workflow file for this run

name: deploy-book
on: [ push ]
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Install dependencies
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install poetry
poetry export --without-hashes -f requirements.txt --output requirements.txt
pip install -r requirements.txt
# Check external links in the book
- name: Check external links
run: |
jupyter-book build . --builder linkcheck
# Build the book
- name: Build the book
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
jupyter-book build .
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/[email protected]
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html
publish_branch: gh-pages # deploying branch