We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 369ea6a commit 94827acCopy full SHA for 94827ac
.github/workflows/docs.yaml
@@ -14,15 +14,9 @@ jobs:
14
run: |
15
git config user.name github-actions[bot]
16
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
17
- - uses: actions/setup-python@v5
+ - name: Setup Python and uv.
18
+ uses: astral-sh/setup-uv@v5
19
with:
- python-version: 3.x
20
+ python-version: 3.11
21
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- - uses: actions/cache@v4
22
- with:
23
- key: mkdocs-material-${{ env.cache_id }}
24
- path: ~/.cache
25
- restore-keys: |
26
- mkdocs-material-
27
- - run: pip install mkdocs-material
28
- - run: mkdocs gh-deploy --force
+ - run: uv run --dev mkdocs gh-deploy --force
0 commit comments