Add installation and releasenotes sections to the user manual.

This commit is contained in:
eelke 2022-09-04 12:43:09 +02:00
parent 61346ae95d
commit 6b8c54398d
12 changed files with 71 additions and 20 deletions

View file

@ -8,25 +8,34 @@ cache:
- "$CI_PROJECT_DIR/pip-cache"
key: "$CI_PROJECT_ID"
.install_sphinx:
before_script:
- pip install -U sphinx
- pip install -U sphinx-theme-pd
- pip install -U reno[sphinx]
test-docs:
stage: test
extends:
- .install_sphinx
script:
- pip install -U sphinx
- pip install -U sphinx-theme-pd
- sphinx-build -b html docs public
- sphinx-build -b html docs userdocs
artifacts:
paths:
- userdocs
only:
- branches
except:
- main
pages:
deploy:
stage: deploy
extends:
- .install_sphinx
script:
- pip install -U sphinx
- pip install -U sphinx-theme-pd
- sphinx-build -b html docs public
artifacts:
paths:
- public
only:
- main
- tags