Skip to content

document parts of the API #10

document parts of the API

document parts of the API #10

Workflow file for this run

name: Docs
# on: [push, pull_request, workflow_dispatch]
# Make changes to "on:" just to force new build
on: [push]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
pip install sphinx sphinx_rtd_theme sphinx_toolbox sphinxcontrib-autoprogram sphinxcontrib.datatemplates
- name: Sphinx build
run: |
sphinx-build docs _build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
# if: ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/skycat_doc2' }}
if: ${{ github.ref == 'refs/heads/skycat_doc2' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
force_orphan: true