Skip to content

Add resume option and update docstrings in run_chain.py (#42) #5

Add resume option and update docstrings in run_chain.py (#42)

Add resume option and update docstrings in run_chain.py (#42) #5

Workflow file for this run

name: Build and Deploy Documentation
on:
push:
branches:
- v3.0-rc
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build docs
uses: C2SM/sphinx-action@sphinx-latest
with:
pre-build-command: "pip install sphinx_rtd_theme && pip install sphinx-copybutton"
build-command: "sphinx-build -b html . _build"
docs-folder: "docs/"
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build
destination_dir: ${{ env.DOCS_VERSION }}
allow_empty_commit: true