18 lines
523 B
YAML
18 lines
523 B
YAML
image: aergus/latex # use a Docker image for LaTeX from https://hub.docker.com/
|
|
|
|
deploy:
|
|
stage: deploy
|
|
variables:
|
|
USER: "gitlab-runner"
|
|
before_script:
|
|
- apt-get update -qy
|
|
- apt-get install -y lftp
|
|
|
|
script:
|
|
- make all -j8 # build the pdf
|
|
- lftp ftp://$FTP_USER:$FTP_PASSWORD@zamok.crans.org -e "mirror public/ www/m1-eea/; bye"
|
|
artifacts:
|
|
paths:
|
|
- public # instruct GitLab to keep the public folder
|
|
only:
|
|
- master # deploy the pdf only for commits made to the master branch
|