Skip to content

Fix quick_start.ipynb (#24) #14

Fix quick_start.ipynb (#24)

Fix quick_start.ipynb (#24) #14

Workflow file for this run

name: Docs
on:
push:
branches:
- main
- dev1
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
poetry install --only doc
- name: Build docs
run: |
poetry run sphinx-build -M html docs/source docs/build
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/dev1'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html