Skip to content

CI: updating actions #39

CI: updating actions

CI: updating actions #39

Workflow file for this run

name: auto-doc-deploy
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.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
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/github-pages-deploy-action@v4.4.3
with:
branch: gh-pages # The branch the action should deploy to.
folder: ./doc/build/html # The folder the action should deploy.