-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 953 Bytes
/
mdbook.yaml
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
name: GitHub Pages
on:
push:
branches:
- deploy
pull_request:
jobs:
deploy:
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: 'latest'
- uses: jontze/action-mdbook@v1
with:
token: ${{secrets.GITHUB_TOKEN}}
mdbook-version: "~0.4.25"
mermaid-version: "~0.12.6"
toc-version: "~0.11.0"
use-linkcheck: false
use-mermaid: true
use-toc: true
use-opengh: false
- run: mdbook-mermaid install
- run: mdbook build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/deploy' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book/html