Skip to content

bump to 3.2.4

bump to 3.2.4 #289

Workflow file for this run

name: Docs
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install OS dependencies
run: |
sudo apt-get install doxygen
- name: Setup Python
uses: actions/setup-python@v2
- name: Install Python dependencies
run: |
pip install sphinx sphinx-rtd-theme breathe docutils
- name: Build docs
run: |
cd docs/src && make docs && touch ../.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.2.1
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.