-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (68 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
72
name: docs
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# manual
workflow_dispatch:
UV_VERSION: 0.4.25
env:
PRE_COMMIT_CACHE: ~/.cache/pre-commit
jobs:
tox-docs:
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
os: [ubuntu-latest]
env:
- TOXENV: "docs"
runs-on: ${{ matrix.os }}
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Configure Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: ${{ env.UV_VERSION }}
enable-cache: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox==4.18.1 tox-gh
- name: Cache pre-commit
uses: actions/cache@v4
with:
path: ${{ env.PRE_COMMIT_CACHE }}
key: ${{ matrix.os }}-${{ matrix.python-version }}-pre-commit-${{ hashFiles('uv.lock') }}
- name: Run tox
run: |
tox
shell: bash
env: ${{ matrix.env }}
- name: Prepare docs artifact
if: always()
shell: bash
run: |
mkdir artifact
cp -a .tox/docs_out/ artifact/html_docs
- name: Upload docs artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: html_docs
path: ./artifact
- name: Deploy to gh pages
if: ${{ github.event_name == 'push' && github.ref_name == github.event.repository.default_branch }}
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .tox/docs_out/
destination_dir: ./latest