Skip to content

Adjust update record #89

Adjust update record

Adjust update record #89

name: Publish docs website via GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@main
- name: Caching action
uses: actions/cache@main
with:
path: .cache
key: ${{ github.ref }}
- name: Setup Python
uses: actions/setup-python@main
with:
python-version: 3.12
- run: pip install mkdocs-material mkdocs-nav-weight
- run: pip install pillow cairosvg
- run: mkdocs gh-deploy --force