Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
stages:
- build
- deploy
build-example:
stage: build
tags:
- docker
image: blang/latex:ubuntu
script:
- cd example
- ln -s ../prace.cls .
- ln -s ../prace-logo.pdf .
- latexmk -pdf example.tex
artifacts:
when: on_success
paths:
- example/example.pdf
deploy-pdf:
stage: deploy
dependencies:
- build-example
tags:
- docker
image: blang/latex:ubuntu
before_script:
# I assume for this to work, I need to set up those variables in the repo
# This is likely not a good idea, adding access tokens...
# (they can easily leak with a change to .gitlab-ci.yml)
# https://forum.gitlab.com/t/is-it-possible-to-commit-artifacts-into-the-git/22218/6
- echo "${CI_ACCESS_TOKEN}"
- echo "${CI_EMAIL}"
- echo "${CI_USERNAME}"
- echo "${CI_COMMIT_SHORT_SHA}"
- echo "${CI_PROJECT_PATH}.git"
- echo "${CI_COMMIT_REF_NAME}"
script:
- ls
- git config --global user.email "${CI_EMAIL}"
- git config --global user.name "${CI_USERNAME}"
- git add example/example.pdf
- git commit -m "Compiled PDF from $CI_COMMIT_SHORT_SHA [skip ci]" || echo "No changes, nothing to commit!"
- git remote rm origin && git remote add origin https://repository.prace-ri.eu/git/${CI_PROJECT_PATH}
# - git push origin HEAD:$CI_COMMIT_REF_NAME # Pushes to the same branch as the trigger