Skip to content

build: next development version. #485

build: next development version.

build: next development version. #485

Workflow file for this run

name: Docs site
on:
push:
branches:
- main
- develop
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5.1.0
with:
python-version: 3.x
- run: pip install \
mkdocs-material \
mkdocs-mermaid2-plugin
- name: Build static site
run: mkdocs build
- name: Deploy to GitHub Pages
if: ${{ github.ref_name == 'main' }}
run: mkdocs gh-deploy --force