-
Notifications
You must be signed in to change notification settings - Fork 6
57 lines (45 loc) · 1.3 KB
/
cd-prod.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
name: cd-prod
on:
workflow_dispatch:
push:
branches:
- master
env:
PUBLISH_BRANCH: pycourse-page-prod
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- name: checkout code
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: caching
uses: actions/cache@v3
with:
key: ${{ github.ref }}
path: .cache
- name: install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: image processing deps
run: |
sudo pip install pillow cairosvg
sudo apt-get install libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev
sudo apt-get install pngquant
- name: deploy mkdocs
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOOGLE_ANALYTICS_KEY: ${{ secrets.GOOGLE_ANALYTICS_KEY }}
run: mkdocs build -v
- name: update publish dir to build branch
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: ${{ env.PUBLISH_BRANCH }}
publish_dir: ./site