22 lines
402 B
YAML
22 lines
402 B
YAML
|
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
|