Commit a6ff795 1 parent 15d447e commit a6ff795 Copy full SHA for a6ff795
File tree 1 file changed +16
-2
lines changed
1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,27 @@ jobs:
25
25
uses : actions/setup-python@v5
26
26
- name : Install uv
27
27
uses : astral-sh/setup-uv@v4
28
- - name : Build docs
28
+ - name : Build HTML docs
29
29
run : make html
30
30
working-directory : ./docs
31
- - name : Upload artifact
31
+ - name : Build PDF docs
32
+ run : make pdf
33
+ working-directory : ./docs
34
+ - uses : xu-cheng/texlive-action@v2
35
+ with :
36
+ scheme : full
37
+ run : |
38
+ apk add make
39
+ make -C ./docs/build/pdf
40
+ - name : Upload GH pages artifacts
32
41
uses : actions/upload-pages-artifact@v3
33
42
with :
34
43
path : ./docs/build/html
44
+ - name : Upload PDF artifact
45
+ uses : actions/upload-artifact@v4
46
+ with :
47
+ name : docs-pdf
48
+ path : ./docs/build/pdf/minimalrisc-vsoc.pdf
35
49
# Deployment job
36
50
deploy :
37
51
environment :
You can’t perform that action at this time.
0 commit comments