-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (40 loc) · 1.07 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
name: docs
on:
push:
branches:
- main
- master
paths:
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/docs.yml'
- 'slist/**'
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install poetry
- run: poetry install -E doc
- run: pip install mkdocs-material mkdocs mkdocstrings[python]
- run: pip install -e .
- name: Build and Deploy Documentation
run: |
git config --global user.name "github-actions"
git config --global user.email "github-actions@github.com"
poetry run mkdocs build --verbose
poetry run mkdocs gh-deploy --force --verbose