Skip to content

docs: add collectstatic to run-local.md help #111

docs: add collectstatic to run-local.md help

docs: add collectstatic to run-local.md help #111

Workflow file for this run

name: Build docs and push to pages branch
on:
push:
branches: [ main, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install requirements for docs generation
run: |
python -m pip install --upgrade pip setuptools setuptools_scm wheel
python -m pip install .[docs]
- name: Build docs
run: pydoctor --config pyproject.toml
- name: Push docs to github pages branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs