24 lines
456 B
YAML
24 lines
456 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
pull: always
|
|
image: gitea.rixxc.de/rixxc/ma-latex:latest
|
|
volumes:
|
|
- name: webroot
|
|
path: /webroot
|
|
commands:
|
|
- cd thesis
|
|
- pdflatex -synctex=1 -interaction=nonstopmode "Abschlussarbeit".tex
|
|
- pdflatex -synctex=1 -interaction=nonstopmode "Abschlussarbeit".tex
|
|
- cp "Abschlussarbeit".pdf /webroot
|
|
|
|
volumes:
|
|
- name: webroot
|
|
host:
|
|
path: /var/www/thesis
|
|
|