-
Notifications
You must be signed in to change notification settings - Fork 3
38 lines (30 loc) · 926 Bytes
/
docs.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
on:
push:
tags:
- "v*"
jobs:
generate-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: main
- name: Install latest stable rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Delete existing docs directory
run: rm -rf ./docs/
- name: Generate docs
run: cargo doc --release --no-deps
- name: Create index.html for github pages
run: echo "<meta http-equiv=\"refresh\" content=\"0; url=kate\">" > target/doc/index.html
- name: Copy generated docs to docs folder
run: cp -r ./target/doc ./docs
- name: Commit updated documentation
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "docs: autogenerate documentation"