-
Notifications
You must be signed in to change notification settings - Fork 15
46 lines (39 loc) · 1.12 KB
/
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
name: Docs
on: [push, pull_request]
jobs:
docs:
name: Docs
runs-on: ubuntu-24.04
strategy:
fail-fast: true
container: osgeo/proj-docs
steps:
- uses: actions/checkout@v4
- name: Print versions
shell: bash -l {0}
run: |
python3 --version
DEBIAN_FRONTEND=noninteractive apt-get update --assume-yes
DEBIAN_FRONTEND=noninteractive apt-get install pandoc texlive-fonts-recommended texlive-xetex --assume-yes
pip3 install pandoc
sphinx-build --version
- name: Lint .md files
shell: bash -l {0}
run: |
if find . -name '*.md' | xargs grep -P '\t'; then echo 'Tabs are bad, please use four spaces in .md files.'; false; fi
- name: HTML
shell: bash -l {0}
run: |
pandoc -s README.md -o README.html
- name: PDF
shell: bash -l {0}
run: |
pandoc -s README.md -o README.pdf --pdf-engine=xelatex
- uses: actions/upload-artifact@v4
with:
name: PDF
path: README.pdf
- uses: actions/upload-artifact@v4
with:
name: HTML
path: README.html