buildman: Add github action that builds the manual

This commit is contained in:
Daniel Marjamäki 2020-07-25 13:04:37 +02:00
parent fab3a8efc8
commit fa8c7ed82c
1 changed files with 21 additions and 0 deletions

21
.github/workflows/buildman.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Build manual
on: [push, pull_request]
jobs:
convert_via_pandoc:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- run: |
mkdir output
- uses: docker://pandoc/latex:2.9
with:
args: --output=output/manual.pdf man/manual.md
- uses: actions/upload-artifact@master
with:
name: output
path: output