Files
gitea-pages/.gitlab-ci.yml

19 lines
304 B
YAML

image: container.psi.ch/linux-infra/documentation
pages:
stage: deploy
script:
- python3 --version
- jupyter-book build .
- echo "move content to public folder"
- mv ./_build/html public
tags:
- shared
- gitlab-pages
- docker
artifacts:
paths:
- public
only:
- master