22 lines
319 B
YAML
22 lines
319 B
YAML
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
|