Initial test of pandoc in a GHA

This commit is contained in:
Evan Kivolowitz 2023-01-16 15:53:49 -06:00
parent e03f9de15b
commit 43b8374206

15
.github/workflows/gen_pdf.yaml vendored Normal file
View file

@ -0,0 +1,15 @@
name: Generate PDF
on: [push]
jobs:
build:
name: Generate PDF
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pandoc and dependencies
run: |
sudo apt install pandoc texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
- name: Create PDF
run: |
pandoc README.md -o README.pdf