cours-m1-eea/.gitlab-ci.yml

14 lines
355 B
YAML
Raw Normal View History

2019-03-05 15:37:38 +01:00
image: aergus/latex # use a Docker image for LaTeX from https://hub.docker.com/
2019-03-05 15:31:54 +01:00
pages:
stage: deploy
2019-03-05 15:37:38 +01:00
variables:
USER: "gitlab-runner"
2019-03-05 15:31:54 +01:00
script:
2019-03-05 15:37:38 +01:00
- ./compile.sh # build the pdf
2019-03-05 15:31:54 +01:00
artifacts:
paths:
- public # instruct GitLab to keep the public folder
only:
- master # deploy the pdf only for commits made to the master branch