-
Notifications
You must be signed in to change notification settings - Fork 7
39 lines (33 loc) · 902 Bytes
/
doc.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
name: Publish documentation
on:
push:
branches:
- master
- mdbook
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install mdBook
run: >
curl -sL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-musl.tar.gz |
tar xz -C /usr/local/bin
- name: Build doc
run: mdbook build docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./docs/book
publish:
runs-on: ubuntu-latest
needs: build
if: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/mdbook' }}
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4