-
Notifications
You must be signed in to change notification settings - Fork 5
57 lines (47 loc) · 1.2 KB
/
gh-pages.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
name: gh-pages
on:
push:
branches:
- master
- docs
permissions:
contents: read
pages: write
id-token: write
defaults:
run:
shell: bash
jobs:
gh-pages:
name: gh-pages
runs-on: ubuntu-latest
environment:
name: gh-pages
steps:
- name: checkout
uses: actions/checkout@v3
- name: cache cargo output
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
- name: create docs directory
run: mkdir -p docs
- name: cargo doc
run: cargo doc --lib --no-deps
- name: move public docs to docs folder
run: mv target/doc/ docs/public/
- name: cargo doc
run: cargo doc --lib --no-deps --document-private-items
- name: move private docs to docs folder
run: mv target/doc/ docs/private/
- name: upload docs artifact
uses: actions/upload-pages-artifact@v1
with:
path: docs
- name: deploy docs to github pages
uses: actions/deploy-pages@v1