-
-
Notifications
You must be signed in to change notification settings - Fork 23
59 lines (48 loc) · 1.3 KB
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Docs
on:
push:
branches:
- master
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: "📥 Checkout"
- uses: actions/setup-python@v5
name: "✨ Set up Python"
id: "setup-python"
with:
python-version: 3.x
- uses: actions/cache@v4
name: "🗃 Cache"
with:
key: "${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-mkdocs"
path: |
~/.cache
.cache
.venv
- name: "📥 Install Material for MkDocs"
run: |
python -m venv .venv
.venv/bin/pip install --upgrade 'mkdocs-material~=9.0' 'mkdocs-autorefs~=0.4' 'mkdocstrings[python]~=0.20' 'mkdocs-git-revision-date-localized-plugin~=1.1' pillow cairosvg
- run: ".venv/bin/mkdocs build --site-dir _site"
name: "📦 Build"
- name: "📤 Upload"
uses: actions/upload-pages-artifact@v3
deploy:
name: "Deploy"
runs-on: ubuntu-latest
needs: "build"
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: "✨ Deploy"
uses: actions/deploy-pages@v4