Skip to content

update links

update links #123

Workflow file for this run

name: Publish
on:
push:
branches:
- master
paths:
- 'docs/**'
- mkdocs.yml
- requirements.txt
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
cache: 'pip' # caching pip dependencies
- run: pip install mkdocs-material
- name: Install Python dependencies
run: |
pip install \
"cairosvg>=2.5" \
"mkdocs-git-committers-plugin-2>=1.1.1" \
"mkdocs-git-revision-date-localized-plugin>=1.0" \
"mkdocs-minify-plugin>=0.3" \
"mkdocs-rss-plugin>=1.2" \
"mkdocs-redirects>=1.0" \
"pillow<10"
- run: mkdocs gh-deploy --force