-
-
Notifications
You must be signed in to change notification settings - Fork 1
79 lines (68 loc) · 2 KB
/
mkdocs-build.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
name: Build and deploy Mkdocs
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
pull_request_review:
types: [edited, dismissed]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: '0'
# setup python
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12.*
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install -U pip wheel
python -m pip install -r requirements.txt
pip show mkdocs-material
- name: mkdocs build
run: mkdocs build -f mkdocs.yml --clean --verbose -d generated
- name: Include _headers file
run: cp _headers generated/_headers
- name: Publish to Cloudflare Pages
if: github.event_name != 'pull_request'
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ID }}
projectName: aosus-translation
directory: generated
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
branch: main
- name: Publish preview to Cloudflare Pages
if: github.event_name == 'pull_request'
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ID }}
projectName: aosus-translation
directory: generated
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref.name }}
- name: Cache pip files
uses: actions/cache@v4
env:
cache-name: pip-reg
with:
path: $HOME/.cache/pip
key: pip-reg
- name: Cache Mkdocs files
uses: actions/cache@v4
with:
key: ${{ github.ref }}
path: .cache