-
-
Notifications
You must be signed in to change notification settings - Fork 175
38 lines (33 loc) · 883 Bytes
/
book.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
name: book
on:
pull_request:
paths:
- "book/**"
push:
branches:
- "master"
paths:
- "book/**"
jobs:
build-deploy:
runs-on: ubuntu-22.04
name: build
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
- run: mdbook build -d public
working-directory: book
- name: Deploy to stable
uses: peaceiris/actions-gh-pages@v3
if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'release' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book/public
keep_files: false
destination_dir: stable/latest/book