Update main.yml #12
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: Build LaTeX Document and Move PDF | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Compile LateX | |
# You may pin to the exact commit or the version. | |
# uses: vinay0410/tectonic-action@b3138021657a3cdb3823f3980be054ca89e86d81 | |
uses: antaljanosbenjamin/compile-latex@v1.0.0 | |
with: | |
file: mai-joel_maximilian-curriculum_vitae.tex | |
output-directory: downloads/ | |
args: -pdf | |
- run: '(test -f mai-joel_maximilian-curriculum_vitae.pdf && echo PDF exists) || (echo PDF does not exist && exit 1)' | |