Skip to content

Update regex_filter.md #22

Update regex_filter.md

Update regex_filter.md #22

Workflow file for this run

name: build_docs
on:
push:
branches:
# - master
- develop
jobs:
build_docs:
name: Build documentation
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Build doxygen
uses: mattnotmitt/doxygen-action@v1
with:
working-directory: './'
doxyfile-path: 'docu/doxygen.ini'
- name: Install mkdocs
run: pip install mkdocs
- name: Build Docs and Deploy to Github Pages
run: python -m mkdocs gh-deploy -f docu/mkdocs.yml --force