Skip to content

xc4000h: take note of unbonded IO. #150

xc4000h: take note of unbonded IO.

xc4000h: take note of unbonded IO. #150

Workflow file for this run

on: push
name: Document
jobs:
document:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade setuptools wheel
pip install -r docs/requirements.txt
- name: Build Sphinx documentation
run: |
make -C docs html
touch docs/_build/html/.nojekyll
- name: Publish documentation
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/_build/html/
CLEAN: true