From 82b72738d5c1004fe407a509998a5e8b046fe48e Mon Sep 17 00:00:00 2001
From: Stefan Hynek <stefan.hynek@uni-goettingen.de>
Date: Tue, 30 Aug 2022 13:36:12 +0200
Subject: [PATCH] ci(gitlab): add missing koma-script package to "create" jobs

---
 .gitlab-ci.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0e65413..56635ba 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -35,6 +35,8 @@ create_pdf:
   image:
     name: pandoc/latex:2.19
     entrypoint: [""]
+  before_script:
+    - tlmgr install koma-script
   script:
     - pandoc technical-reference.md -o technical-reference.pdf --template=rdd.latex  --shift-heading-level-by=-1
   artifacts:
@@ -47,6 +49,8 @@ create_epub:
   image:
     name: pandoc/latex:2.19
     entrypoint: [""]
+  before_script:
+    - tlmgr install koma-script
   script:
     - pandoc technical-reference.md -o technical-reference.epub  --shift-heading-level-by=-1
   artifacts:
-- 
GitLab