diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ecdf3f8 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +image: xldrkp/pandoc:latest + +build: + before_script: + - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@collaborating.tuhh.de/hos/modernes-publizieren/offen/software/konfigurationen/buchprojekt.wiki.git + script: + - ls -la + - cd buchprojekt.wiki + - ls -la + - pandoc --version + - pandoc + einleitung.md + hintergrund.md + fazit.md + -o ../buch.pdf + artifacts: + paths: + - "*.pdf" |