-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (46 loc) · 1.48 KB
/
deploy-docs.yml
File metadata and controls
53 lines (46 loc) · 1.48 KB
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
name: Generate API Documentation
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
doc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Rust (nightly) with docs
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rust-docs
- name: Cache Cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache target directory
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.lock') }}
- name: Generate Rust API documentation
run: |
export RUSTDOCFLAGS="--cfg docsrs"
cargo +nightly doc --workspace --no-deps \
--exclude rustecal-sys \
--exclude rustecal-samples/hello_send \
--exclude rustecal-samples/hello_receive \
--exclude rustecal-samples/person_send \
--exclude rustecal-samples/person_receive \
--exclude rustecal-samples/bytes_send \
--exclude rustecal-samples/bytes_receive
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc