Skip to content

REL: version 0.4.25 #42

REL: version 0.4.25

REL: version 0.4.25 #42

Workflow file for this run

name: auto-doc
on:
push:
tags:
- '*.*.*'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade -r requirements_doc.txt
- name: Install module
run: |
python setup.py install
- name: Building documentation
run: |
cd doc
make html
- name: Deploying documentation
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: ./doc/build/html # The folder the action should deploy.