Skip to content

Minor change

Minor change #253

Workflow file for this run

name: Generate documentation
on: [push, pull_request]
permissions:
contents: write
jobs:
build:
name: Docgen
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os:
- debian-bullseye
steps:
- uses: actions/checkout@v1
- name: Install deps
run: sudo apt-get -y --no-install-recommends install python3-markdown python3-blockdiag
- name: Run docgen
run: ./build_docs.py
- name: Upload to github pages
if: success()
uses: crazy-max/ghaction-github-pages@v1
with:
target_branch: gh-pages
build_dir: build_docs_output
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}