2021-02-12 23:33:54 +01:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: Compile LaTeX
|
|
|
|
|
|
|
|
steps:
|
2021-02-13 00:44:14 +01:00
|
|
|
- name: Compile with PdfLaTeX
|
2021-02-12 23:33:54 +01:00
|
|
|
image: aergus/latex
|
2021-02-24 20:13:34 +01:00
|
|
|
commands:
|
2021-02-13 00:44:14 +01:00
|
|
|
- /usr/bin/pdflatex main.tex
|
2021-02-26 22:16:05 +01:00
|
|
|
- date >> title.md
|
|
|
|
- echo "Auto-generated PDF on " >> note.md
|
|
|
|
- date >> note.md
|
|
|
|
|
|
|
|
- name: Publish PDF
|
|
|
|
image: plugins/gitea-release
|
|
|
|
settings:
|
|
|
|
base_url: https://gitea.auro.re
|
|
|
|
api_key: latex-ci-test-a-mettre-dans-secret-de-drone
|
|
|
|
files:
|
|
|
|
-main.pdf
|
|
|
|
title: title.md
|
|
|
|
notes: note.md
|
2021-02-26 22:19:48 +01:00
|
|
|
when:
|
|
|
|
event: tag
|