Add installation and releasenotes sections to the user manual.
This commit is contained in:
parent
61346ae95d
commit
6b8c54398d
12 changed files with 71 additions and 20 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue