Skip to content

Update index.md

Update index.md #90

Workflow file for this run

name: ci
on: # Triggers the workflow on push but only for the "main" branch
push:
branches: [ "main" ]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- 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: sudo apt install libcairo2 zlib1g-dev libjpeg-dev
- run: uv sync
- run: uv run mkdocs gh-deploy --force