-
Notifications
You must be signed in to change notification settings - Fork 10
59 lines (48 loc) · 1.38 KB
/
deploy.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Deploy docs
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
name: Generate docs
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.x
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: pnpm
- name: Install dependencies
run: |-
pnpm install --frozen-lockfile
- name: Generate highlight.js file
run: |-
./scripts/highlight.sh
- name: Install latest mdBook
run: |-
tag="$(curl -sS 'https://api.github.com/repos/rust-lang/mdBook/releases/latest' | jq -r '.tag_name')"
url="https://github.com/rust-lang/mdBook/releases/download/${tag}/mdbook-${tag}-x86_64-unknown-linux-gnu.tar.gz"
mkdir -p mdBook
curl -sSL "$url" | tar -xz -C mdBook
echo "$PWD/mdBook" >> $GITHUB_PATH
- name: Build docs
run: |-
mdbook build
- name: Minify docs
run: |-
./scripts/minify.sh
- name: Publish docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book
force_orphan: true
full_commit_message: deploy