Skip to content

fix build of diode-file-bindings because of aux module refactoring #12

fix build of diode-file-bindings because of aux module refactoring

fix build of diode-file-bindings because of aux module refactoring #12

Workflow file for this run

name: Doc
on:
push:
branches: [ master ]
jobs:
doc-build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Prepare
run: pip install sphinx sphinx_rtd_theme
- name: Build
run: sphinx-build doc doc/_build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: doc/_build
clean: true
token: ${{ secrets.GITHUB_TOKEN }}