Skip to content

Github page documentation #1

Github page documentation

Github page documentation #1

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches: [ "docs" ]
paths:
- docs
- mkdocs.yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- name: Insall mkdocs
run: pip install --upgrade pip && pip install mkdocs mkdocs-gen-files
- run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Publish docs
run: mkdocs gh-deploy