diff options
Diffstat (limited to '_build.yml')
-rw-r--r-- | _build.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/_build.yml b/_build.yml new file mode 100644 index 0000000..3276c5f --- /dev/null +++ b/_build.yml @@ -0,0 +1,13 @@ +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 *.md
+ cd ..
+ pdfinfo spec.pdf | grep Pages
|