Skip to content

Update location of docs #2

Update location of docs

Update location of docs #2

Workflow file for this run

name: Sphinx Docs
on:
push:
branches:
- documentation
pull_request:
branches:
- documentation
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx_rtd_theme
- name: Build Sphinx documentation
run: |
cd doodle/docs
make html
- name: Upload Sphinx documentation
uses: actions/upload-artifact@v2
with:
name: Sphinx HTML Documentation
path: docs/_build/html