mirror of
https://gitlab.com/openlp/documentation.git
synced 2024-12-21 12:02:50 +00:00
Merge branch 'deploy-to-pages' into 'master'
Deploy documentation to GitLab Pages See merge request openlp/documentation!1
This commit is contained in:
commit
deb8464299
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.
|
||||
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
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
|
Loading…
Reference in New Issue
Block a user