This file contains hidden or 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: Build Resume | |
| on: | |
| push: | |
| paths: | |
| - 'resume/**' | |
| jobs: | |
| build-resume: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: Install LaTeX | |
| run: sudo apt-get update && sudo apt-get install -y texlive-latex-base texlive-latex-extra | |
| - name: Build Resume | |
| run: | | |
| cd resume | |
| pdflatex main.tex | |
| - name: Upload PDF | |
| uses: actions/upload-artifact@v2 | |
| with: | |
| name: resume | |
| path: resume/main.pdf |