Chill-manuals/.drone.yml

45 lines
1019 B
YAML
Raw Normal View History

---
kind: pipeline
type: docker
2022-05-16 09:22:05 +00:00
name: build-release
steps:
- name: submodules
image: alpine/git
commands:
- git submodule init
- git submodule update --recursive --remote
- name: pandoc
2022-05-16 09:25:44 +00:00
image: pandoc/core:2.14-alpine
commands:
2021-08-25 15:46:54 +00:00
- sh build-pandoc.sh latex user > user-manual.tex
- sh build-pandoc.sh latex admin > user-manual.tex
- name: build-latex
image: ghcr.io/xu-cheng/texlive-full:latest
commands:
- latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode -xelatex user-manual.tex
2021-08-25 15:46:54 +00:00
- latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode -xelatex latex-manual.tex
- name: release
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_key
base_url: https://gitea.champs-libres.be
files:
- user-manual.pdf
2021-08-25 15:46:54 +00:00
- admin-manual.pdf
checksum:
- sha512
2022-05-16 09:27:13 +00:00
title: ${DRONE_TAG:=latest}
prerelease: true
2022-05-16 09:22:05 +00:00
---
kind: signature
2022-05-16 09:27:13 +00:00
hmac: 0b3c580c341083b8604053e1d5462ee6856c2d00dce9094e9a64ddd5a401e799
2022-05-16 09:22:05 +00:00
...