Manual start
This commit is contained in:
parent
97b24a8bf3
commit
19d92c5236
5 changed files with 99 additions and 0 deletions
22
.gitlab-ci.yml
Normal file
22
.gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
image: python:3.7-alpine
|
||||
|
||||
test-docs:
|
||||
stage: test
|
||||
script:
|
||||
- pip install -U sphinx
|
||||
- sphinx-build -b html docs public
|
||||
only:
|
||||
- branches
|
||||
except:
|
||||
- master
|
||||
|
||||
pages:
|
||||
stage: deploy
|
||||
script:
|
||||
- pip install -U sphinx
|
||||
- sphinx-build -b html docs public
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- master
|
||||
Loading…
Add table
Add a link
Reference in a new issue