-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (62 loc) · 1.57 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
name: Docs
on:
push:
branches: [main]
paths:
- 'docs/**'
- 'lib/**'
- Cargo.toml
- '*.md'
- .github/workflows/docs.yml
pull_request:
branches: [main]
paths:
- 'docs/**'
- 'lib/**'
- Cargo.toml
- '*.md'
- .github/workflows/docs.yml
jobs:
supplemental:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cargo-binstall
uses: cargo-bins/cargo-binstall@main
- name: Install Just
run: cargo binstall -y just
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: yarn install
- name: Build Node.js type definitions
run: yarn build:debug
- name: Generate Node.js API docs
run: yarn docs
- run: pip install -r docs/requirements.txt
- run: pip install .
- run: just docs-build
- name: Save docs build as artifact
uses: actions/upload-artifact@v4
with:
path: docs/site
name: supplemental-docs
api:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-binstall
uses: cargo-bins/cargo-binstall@main
- name: Install Just
run: cargo binstall -y just
- run: just docs-rs
- name: save docs as artifact
uses: actions/upload-artifact@v4
with:
name: api-docs
path: target/doc