-
Notifications
You must be signed in to change notification settings - Fork 13
41 lines (37 loc) · 989 Bytes
/
Copy pathdocs.yml
File metadata and controls
41 lines (37 loc) · 989 Bytes
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
name: Docs
on:
push:
branches:
- master
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
pages: write
id-token: write
jobs:
docs:
name: Build documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Install Deps
run: |
sudo apt update
sudo apt install -yy libseccomp-dev libssl-dev build-essential
- uses: dtolnay/rust-toolchain@stable
- name: cargo doc
run: cargo doc --color=always --no-deps --all
- name: Make index.html
run: |
echo '<meta http-equiv="Refresh" content="0; url=./task_maker/index.html">' > target/doc/index.html
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: target/doc
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5