Skip to content

Fix version number on github pages for sphinx (#49) #3

Fix version number on github pages for sphinx (#49)

Fix version number on github pages for sphinx (#49) #3

Workflow file for this run

name: Build documentation
on:
push:
tags:
- "*"
jobs:
test:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
cache: 'pip'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install cmake pybind11 numpy tox
- name: Build docs
run: |
python setup.py build_ext --inplace
cp build/lib*/rds2py/rds_parser* src/rds2py/
tox -e docs
touch ./docs/_build/html/.nojekyll
- name: GH Pages Deployment
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: ./docs/_build/html
clean: true # Automatically remove deleted files from the deploy branch