documentation/.gitlab-ci.yml
Raoul Snyman 49458181a5 Use the documentation Docker image and build a PDF
- Use the documentation Docker image
- Build PDF
- Link to image from manual front page
- Fix display tags table
- Remove unsupported characters in display tags table
2019-10-03 20:01:03 +00:00

34 lines
489 B
YAML

image: openlp/documentation
pages:
stage: deploy
script:
- cd manual
- make html
- mv build/html/ ../public/
- make latex
- cd build/latex
- make all-pdf
- mv OpenLP.pdf ../../../public/
artifacts:
paths:
- public
only:
- master
test:
stage: test
script:
- cd manual
- make html
- mv build/html/ ../test/
- make latex
- cd build/latex
- make all-pdf
- mv OpenLP.pdf ../../../test/
artifacts:
paths:
- test
except:
- master