-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (41 loc) · 1.23 KB
/
rustdoc.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
name: rustdoc to gh-pages
on:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
release:
name: GitHub Pages
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout the Repository
uses: actions/checkout@v2
- name: Install the Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Build the Documentation
run: |
RUSTDOCFLAGS="\
--enable-index-page \
--generate-link-to-definition \
--extern-html-root-url ndarray=https://docs.rs/ndarray/0.15/ \
--extern-html-root-url numcodecs=https://juntyr.github.io/numcodecs-rs/ \
--extern-html-root-url pyo3=https://docs.rs/pyo3/0.21/ \
--extern-html-root-url serde=https://docs.rs/serde/1.0/ \
-Zunstable-options\
" cargo doc \
--all-features \
--no-deps
- name: Deploy the Documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./target/doc
keep_files: false