aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAxel Dürkop <axel.duerkop@tuhh.de>2020-11-10 11:47:28 +0100
committerAxel Dürkop <axel.duerkop@tuhh.de>2020-11-10 11:47:28 +0100
commitbe28b4c030627b19f04d6ee6853f4d628ba63f99 (patch)
treec601c9e1f2164baa85de2975da4e956bb8fab232 /.gitlab-ci.yml
parent59e948e3291e672cc24f6d47a2baddc51bf60b82 (diff)
Improve build script
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0d3a8a1..aeada69 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,9 +1,13 @@
image: pandoc/latex:2.10.1
+stages:
+ - build
+
build:
+ stage: build
script:
- - pandoc --version
- - xargs -a ./content/toc.txt pandoc ./config/.pandoc-config.yml --filter pandoc-citeproc -o build/book.pdf
+ - chmod +x ./build.sh
+ - ./build.sh
artifacts:
paths:
- - "*.pdf"
+ - "build" \ No newline at end of file