WIP fixes to svg overlays for what I assume are old inkscape versions… #211
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: | |
push: | |
pull_request: | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y inkscape | |
pip install --upgrade pip | |
pip install wheel numpy "cython<3.0" pillow | |
pip install -q ipython Sphinx sphinx-gallery numpydoc | |
pip install -e . --no-build-isolation | |
python -c 'import cortex; print(cortex.__full_version__)' | |
- name: Build documents | |
run: | | |
cd docs && make html && cd .. | |
touch docs/_build/html/.nojekyll | |
- name: Publish to gh-pages if tagged | |
if: startsWith(github.ref, 'refs/tags') | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs/_build/html |