2022-08-29 17:30:41 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
steps:
|
2022-08-29 18:19:15 +00:00
|
|
|
- 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
|
2022-08-29 17:58:30 +00:00
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- ls
|
2022-08-29 18:19:15 +00:00
|
|
|
- name: Nur für citest_publish branch (später master)
|
2022-08-29 18:02:38 +00:00
|
|
|
image: alpine
|
|
|
|
commands:
|
2022-08-29 18:19:15 +00:00
|
|
|
- echo foo
|
2022-08-29 18:02:38 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/citest_publish
|
2022-08-29 18:19:15 +00:00
|
|
|
|