blob: e40edc3e147539a4d7c1b7dad7c357f51c887c75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
image: debian/stable
packages:
- pandoc
- wkhtmltopdf
- poppler-utils
sources:
- https://git.sr.ht/~boringcactus/crowbar-spec
tasks:
- page-count: |
cd crowbar-spec
pandoc -s -o ../spec.pdf -t html -M "title=Crowbar Specification" *.md
cd ..
pdfinfo spec.pdf | grep Pages
artifacts:
- spec.pdf
|