From ce573fc1c182ac611d81a4b318d4adb9fe303e97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Ple=C3=9F?= Date: Mon, 29 Aug 2022 20:19:15 +0200 Subject: [PATCH] testweise pdflatex --- .drone.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.drone.yml b/.drone.yml index b08667e..dc3c757 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,21 +3,21 @@ kind: pipeline type: docker name: default steps: - - name: Echo Foo - image: hello-world - - name: Nur für citest_publish branch + - name: generate PDF files from tex + image: registry.gitlab.com/islandoftex/images/texlive:latest + commands: + - pdflatex satzung.tex + - pdflatex beitragsordnung.tex + - pdflatex schluesselordnung.tex + - name: show directory contents image: alpine commands: - ls - when: - ref: - - refs/heads/citest_publish - - name: Nur für citest_publish branch bei pull_request + - name: Nur für citest_publish branch (später master) image: alpine commands: - - ls + - echo foo when: ref: - refs/heads/citest_publish - event: - - pull_request +