We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6825e5 commit 1e9fa61Copy full SHA for 1e9fa61
1 file changed
.github/workflows/deploy_docs.yml
@@ -1,27 +1,18 @@
1
name: Deploy Docs
2
-
3
on:
4
push:
5
branches:
6
- main
7
8
permissions:
9
contents: write
10
11
jobs:
12
deploy:
13
runs-on: ubuntu-latest
14
steps:
15
- - name: Checkout repository
16
- uses: actions/checkout@v4
17
18
- - name: Set up Python
19
- uses: actions/setup-python@v5
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
20
with:
21
- python-version: '3.x'
22
23
- - name: Install dependencies
24
- run: pip install -r requirements.txt
25
26
- - name: Deploy with MkDocs
27
- run: mkdocs gh-deploy --force --config-file mkdocs.yml
+ python-version: 3.x
+ - run: pip install -r requirements.txt
+ - run: pip install mkdocs-material
+ - run: mkdocs gh-deploy --force --config-file mkdocs.yml
0 commit comments