-
Notifications
You must be signed in to change notification settings - Fork 53
96 lines (76 loc) · 1.98 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: docs
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: docs-${{ github.head_ref }}
cancel-in-progress: true
permissions:
contents: read
id-token: write
pull-requests: write
checks: write
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: [3.12]
node-version: [20]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
# ------------------------------------------------------------------------
# Set up JS
- name: Set up pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install JS deps
run: |
just js-install
- name: Build JS
run: |
just js-build
# ------------------------------------------------------------------------
# Python
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Print Python info
run: |
uv run which python
uv run python --version
uv run which pip
uv pip --version
uv pip freeze
- name: Build demo docs
run: |
just docs-build
- name: Cache website
id: cache-build
uses: actions/cache@v4
with:
path: demo/dist
key: >
website
${{ github.run_id }}
${{ github.run_attempt }}
cf-pages:
uses: ./.github/workflows/docs-cf-pages.yml
needs: [build]
secrets: inherit
post-deploy:
uses: ./.github/workflows/docs-post.yml
needs: [cf-pages]
secrets: inherit