-
Notifications
You must be signed in to change notification settings - Fork 6
45 lines (36 loc) · 1009 Bytes
/
pages.yml
File metadata and controls
45 lines (36 loc) · 1009 Bytes
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
name: Github Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
# github-pages-deploy-action requires we set this
persist-credentials: false
- name: Restore the cached files
uses: actions/cache@v2
with:
path: ~/.cargo/
key: ${{ runner.os }}-pages-cargo
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
default: true
- name: Install/Update cargo utils
run: cargo install mdbook
- name: Build The Book
run: mdbook build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: target/book_out
CLEAN: true