-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 987 Bytes
/
manual.yaml
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
on:
push:
paths:
- 'docs/manuel/**'
- '.github/workflows/manual.yaml'
jobs:
build-manual:
runs-on: ubuntu-22.04
container:
image: rust:latest
options: --user 1001 # So we avoid ownership issues
env:
book-dir: ./docs/manuel
steps:
- uses: actions/checkout@v4
- name: Declare some variables
shell: bash
run: |
echo "sha_short=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV"
echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> "$GITHUB_ENV"
# Install mdbook
- name: Install `mdbook`
run: cargo install mdbook
# Build the book
- name: Build the book
run: mdbook build
working-directory: ${{ env.book-dir }}
# Package artifact
- name: Package artifact
uses: actions/upload-artifact@v3
with:
name: manuel-backend-${{ env.branch }}-${{ env.sha_short }}
path: ${{ env.book-dir }}/book