-
-
Notifications
You must be signed in to change notification settings - Fork 317
48 lines (45 loc) · 1.17 KB
/
gh-pages-mdbook.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
name: Build & Deploy mdBook documentation
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'docs/mdbook/**'
jobs:
gh-pages-mdbook-build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
- name: Install Dependencies
shell: bash
run: sudo apt-get install -y libwayland-dev libxkbcommon-dev # Required for winit
- name: Build
working-directory: docs/mdbook
shell: bash
run: mdbook build
- uses: actions/upload-artifact@v4
with:
name: book
path: docs/mdbook/book/
gh-pages-mdbook-deploy:
needs: gh-pages-mdbook-build
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download book
uses: actions/download-artifact@v4
with:
name: book
path: artifacts/book
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: artifacts/book
target-folder: docs/book