mirror of
https://gitlab.com/openlp/documentation.git
synced 2024-12-22 04:22:49 +00:00
Deploy documentation to GitLab Pages
- Set up .gitlab-ci.yml to deploy documentation to GitLab pages - Make some minor fixes/changes for git migration
This commit is contained in:
parent
d9a4dec829
commit
2b6f8b15af
0
.bzrignore → .gitignore
vendored
0
.bzrignore → .gitignore
vendored
14
.gitlab-ci.yml
Normal file
14
.gitlab-ci.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
image: alpine
|
||||||
|
|
||||||
|
pages:
|
||||||
|
script:
|
||||||
|
- apk --no-cache add make py3-setuptools python3-dev
|
||||||
|
- python3 -m pip install sphinx sphinx_rtd_theme
|
||||||
|
- cd manual
|
||||||
|
- make html
|
||||||
|
- mv build/html/ ../public/
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
only:
|
||||||
|
- master
|
@ -42,7 +42,7 @@ master_doc = 'index'
|
|||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = u'OpenLP'
|
project = u'OpenLP'
|
||||||
copyright = u'2004 - 2015, Raoul Snyman'
|
copyright = u'OpenLP Developers'
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
# The version info for the project you're documenting, acts as replacement for
|
||||||
# |version| and |release|, also used in various other places throughout the
|
# |version| and |release|, also used in various other places throughout the
|
||||||
|
Loading…
Reference in New Issue
Block a user