fix: ambig type fails #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |