-
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (66 loc) · 1.97 KB
/
docs.yml
File metadata and controls
75 lines (66 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Docs
on:
push:
branches:
- master
defaults:
run:
shell: bash
jobs:
docs:
name: Generate and upload docs
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libasound2-dev libgl-dev libjack-dev libx11-xcb-dev \
libxcb1-dev libxcb-dri2-0-dev libxcb-icccm4-dev libxcursor-dev \
libxkbcommon-dev libxcb-shape0-dev libxcb-xfixes0-dev
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ubuntu-cargo-docs-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
ubuntu-cargo-docs-
ubuntu-cargo-
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Generate documentation for all targets
run: >-
cargo doc --features docs,standalone,zstd --no-deps
-p nih_plug
-p nih_plug_derive
-p nih_plug_egui
-p nih_plug_iced
-p nih_plug_vizia
-p nih_plug_xtask
- name: Add a redirect index page
run: |
cat > target/doc/index.html <<EOF
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=nih_plug">
<title>Redirecting to nih_plug documentation</title>
</head>
<body>
<p>Redirecting to <a href="nih_plug">nih_plug documentation</a>...</p>
</body>
</html>
EOF
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.5.0
if: github.ref == 'refs/heads/master'
with:
branch: gh-pages
folder: target/doc
clean: true