-
-
Notifications
You must be signed in to change notification settings - Fork 20
37 lines (35 loc) · 910 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
on:
push:
branches:
- main
name: Docs
jobs:
docs:
concurrency: ci-${{ github.ref }}
name: Build and deploy documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install static-sitemap-cli
run: npm install static-sitemap-cli
- name: Install mdbook
uses: baptiste0928/cargo-install@v1
with:
crate: mdbook
version: 0.4
- name: Build book
run: |
mdbook build
- name: Generate sitemap
run: |
cd book
npx sscli --base https://lifetime-variance.sunshowers.io
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: book