Skip to content
Snippets Groups Projects
Commit 78963049 authored by Anne Tipka's avatar Anne Tipka
Browse files

Update .gitlab-ci.yml

parent f9472031
Branches
No related tags found
No related merge requests found
image: python:3.7-alpine
test:
stage: test
script:
- pip install -U sphinx
- sphinx-build -b html . public
only:
- branches
except:
- master
pages:
stage: deploy
script:
- pip install -U sphinx
- sphinx-build -b html . public
- cp -r Documentation/html public
artifacts:
paths:
- public
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment