diff options
author | Aada | 2024-06-18 11:58:35 +0200 |
---|---|---|
committer | Aada | 2024-06-18 11:58:35 +0200 |
commit | f8569775f1e500cb061cd71d6ba301839797b7dd (patch) | |
tree | 5b92682d18c2cc0661ef4b820bd1925293501981 | |
parent | 34f194c170296db064de303e1eaa5f288ff79916 (diff) |
Fix CI getting wrong arguments *somehow*
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3c8dafa..eea40f0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,22 +6,24 @@ build-final: stage: build-pdf image: registry.gitlab.com/containers.ada/tectonic script: - - tectonic heidelberg.tex + - "tectonic heidelberg.tex --chatter default" artifacts: paths: - heidelberg.pdf rules: - changes: - "*.tex" + - ".gitlab-ci.yml" build-svg: stage: build-svg image: registry.gitlab.com/containers.ada/pdf2svg script: - - pdf2svg heidelberg.svg + - "pdf2svg heidelberg.svg" artifacts: paths: - heidelberg.svg rules: - changes: - "*.tex" + - ".gitlab-ci.yml" |