-
Notifications
You must be signed in to change notification settings - Fork 4
64 lines (52 loc) · 1.32 KB
/
generate_docs.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Automatic generation of documentation will be copied and checked into the
# gh-pages branch.
name: Documentation generation CI
on:
push:
branches-ignore:
- 'gh-pages'
tags: []
pull_request:
branches-ignore:
- 'gh-pages'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Generate PDF documentation
with:
working-directory:'.'
run: |
cd doc
dblatex -s texstyle.sty mobilitydb-workshop.xml
# store the doc files
- name: Upload Output Directory
uses: actions/upload-artifact@v2
with:
name: doc-files
path: doc
retention-days: 1
copy:
name: Build
runs-on: ubuntu-latest
needs: build
steps:
# checkout the gh-pages branch
- uses: actions/checkout@v3
with:
ref: gh-pages
# download the doc files, most of which are generated above
- name: Download Output Directory
uses: actions/download-artifact@v2
with:
name: doc-files
path: doc
# add, commit and push to gh-pages
- name: Commit changes
uses: EndBug/add-and-commit@v7
with:
message: 'Update docs'
branch: gh-pages
add: '["doc/mobilitydb-workshop.pdf"]'