-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (46 loc) · 1.24 KB
/
documentation.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
43
44
45
46
47
48
name: Documentation checks
on:
push:
branches: main
pull_request:
branches: main
paths:
- 'docs/**'
- 'spellingstyles/**'
jobs:
link_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Link check
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: .github/md_config.json
spell_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Spell check
uses: errata-ai/[email protected]
with:
styles: https://github.com/errata-ai/write-good/releases/latest/download/write-good.zip
files: docs/src
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
build_and_deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{github.workflow}}-${{github.ref}}
steps:
- uses: actions/checkout@v3
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: 0.4.13
- run: mdbook build ./docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{github.ref == 'refs/heads/main'}}
with:
github_token: ${{secrets.GITHUB_TOKEN}}
publish_dir: ./docs/book