mirror of
https://gitlab.com/openlp/documentation.git
synced 2024-12-21 20:12:49 +00:00
Raoul Snyman
49458181a5
- 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
34 lines
489 B
YAML
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
|