path #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pandoc CV | |
on: push | |
jobs: | |
make_cv_pdf: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt-get install texlive-latex-base texlive-latex-extra texlive | |
- run: echo $(which pdflatex) | |
- run: echo $PATH | |
- run: PATH=$PATH:/usr/bin | |
- run: echo $PATH | |
- uses: docker://pandoc/core:2.9 | |
with: | |
args: >- | |
--standalone | |
--output=samantha_barron_cv.pdf | |
./content/cv/cv.md |