Skip to content

Update docs for 1.2.1 (#27) #54

Update docs for 1.2.1 (#27)

Update docs for 1.2.1 (#27) #54

Workflow file for this run

name: Publish docs via GitHub Pages
on:
workflow_dispatch: {}
push:
branches:
- master
- main
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install -r requirements.txt
- run: mkdocs gh-deploy --force