Update .github/workflows/docs.yml

This commit is contained in:
2026-04-09 09:02:58 +00:00
parent 665e4020ba
commit 1c6a0a1b2f

View File

@@ -8,6 +8,7 @@ on:
- 'mkdocs.yml' - 'mkdocs.yml'
workflow_dispatch: workflow_dispatch:
jobs: jobs:
build-and-deploy: build-and-deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -15,7 +16,10 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install dependencies - name: Install dependencies
run: python3 -m pip install mkdocs mkdocs-material run: |
apt-get update -qq
apt-get install -y -qq python3-pip
pip3 install mkdocs mkdocs-material
- run: mkdocs build - run: mkdocs build