2020-07-25 13:04:37 +02:00
|
|
|
name: Build manual
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
convert_via_pandoc:
|
2022-05-31 19:55:57 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2020-07-25 13:04:37 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
mkdir output
|
|
|
|
|
|
|
|
- uses: docker://pandoc/latex:2.9
|
|
|
|
with:
|
2020-09-11 22:19:08 +02:00
|
|
|
args: --output=output/manual.html man/manual.md
|
|
|
|
|
|
|
|
- uses: docker://pandoc/latex:2.9
|
|
|
|
with:
|
|
|
|
args: --output=output/manual.pdf man/manual.md
|
|
|
|
|
2020-07-30 10:36:06 +02:00
|
|
|
- uses: actions/upload-artifact@v2
|
2020-07-25 13:04:37 +02:00
|
|
|
with:
|
|
|
|
name: output
|
|
|
|
path: output
|