Bumped version for 23.1a7 release. #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docs | |
on: | |
# Trigger on pushes to the main branch only. | |
# See #5 ref restricting to tags. | |
push: | |
branches: [ main ] | |
# Or run manually. | |
workflow_dispatch: | |
jobs: | |
build-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install Django Sphinx myst-parser furo | |
pip install -e . | |
- name: Build docs | |
run: make json | |
working-directory: ./docs |