File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed
Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 55 branches :
66 - master
77 - ' [34].[0-9]+.x'
8+ - actions/build_pdf
89 pull_request :
910 branches :
1011 - master
1112 - ' [34].[0-9]+.x'
1213
1314jobs :
14- build :
15+ build-dev-docs :
16+ name : ' Build development docs'
1517 runs-on : ubuntu-latest
1618 steps :
1719 - uses : actions/checkout@v2
3133 run : |
3234 cd development
3335 make html
36+
37+ build-user-docs-pdf :
38+ name : ' Build user docs PDF'
39+ runs-on : ubuntu-latest
40+ steps :
41+ - uses : actions/checkout@v2
42+ - name : Install fop
43+ run : |
44+ sudo apt-get install -y fop
45+ - name : Build pdf documentation
46+ working-directory : ${{ github.workspace }}/documentation
47+ run : |
48+ ./create_pdf.sh
49+ - name : Archive PDF output
50+ uses : actions/upload-artifact@v4
51+ with :
52+ name : Documentation PDF
53+ path : ${{ github.workspace }}/documentation/*.pdf
You can’t perform that action at this time.
0 commit comments