From 9a8faa3f0de93314da3964c2b94d3e83dbd4e521 Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Sat, 30 May 2020 20:10:12 +0000 Subject: [PATCH] Fix bug in documentation build script --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 047ddf1..5ab8b4e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -49,11 +49,12 @@ build-documentation: stage: build script: - export CI_JOB_TIMESTAMP=$(date --utc -I) + - cd documentation - latexmk -pdf documentation - mv "documentation.pdf" "documentation-${CI_JOB_TIMESTAMP}.pdf" artifacts: paths: - - "documentation*.pdf" + - "**/documentation*.pdf" rules: - if: $CI_MERGE_REQUEST_ID changes: