Skip to content

fix: ambig type fails #39

fix: ambig type fails

fix: ambig type fails #39

name: MkDocs Deploy CI
on:
push:
branches:
- master
paths:
- docs/**
- .github/workflows/mkdocs-deploy.yaml
- mkdocs.yml
# mkdocstrings generates api reference from src
- src/**
- tests/**
- pytest.ini
- tox.ini
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: pdm-project/setup-pdm@v4
- run: echo "cache_id=$(date --utc '+%F')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: |
pdm install --group mkdocs
eval $(pdm venv activate)
mkdocs gh-deploy --force