-
Notifications
You must be signed in to change notification settings - Fork 1
80 lines (71 loc) · 2.46 KB
/
publish_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
73
74
75
76
77
78
79
80
name: Publish Docs to GitHub Pages
on:
push:
branches:
- main
jobs:
publish:
strategy:
matrix:
python-version: [3.11]
defaults:
run:
shell: bash
environment: ${{ github.base_ref }}
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
steps:
#----------------------------------------------
# ----------- check-out repo ------------
#----------------------------------------------
- uses: actions/checkout@v4
#----------------------------------------------
# ------------ setup python -----------
#----------------------------------------------
- name: 🔧 Setup Python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: 📜 Install Poetry
run: |
python -m pip install -U pip poetry
poetry --version
#----------------------------------
# ----- load cached venv -----
#----------------------------------
- name: Load cached venv
id: cached-pip-wheels
uses: actions/cache@v4
with:
path: ~/.cache
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# ------------ install deps ------------
#----------------------------------------------
- name: Install dependencies
run: |
poetry install --no-interaction
#-----------------------------------------------------
# ------------ configure mkdocs cache ------------
#-----------------------------------------------------
- name: Set mkdocs cache_id
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- name: Load cached mkdocs
id: cached-mkdocs
uses: actions/cache@v4
with:
key: mkdocs-metrial-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-metrial-
#------------------------------------------------
# ------------ build and publish ------------
#------------------------------------------------
- name: Build and publish docs
run: make publish-docs