Skip to content

Merge pull request #11 from Oisin-M/feat/vary_conv_layers #53

Merge pull request #11 from Oisin-M/feat/vary_conv_layers

Merge pull request #11 from Oisin-M/feat/vary_conv_layers #53

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: 3.10.14
- name: Install requirements
run: |
pip3 install sphinx-rtd-theme
- name: Build docs
run: |
cd docs
make html
# https://github.com/peaceiris/actions-gh-pages
- name: Deploy
if: success()
uses: peaceiris/actions-gh-pages@v3
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html/