Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name: Build LaTeX and commit PDF
name: Build CV and commit PDF

on:
pull_request:
branches: [ master ]
branches: [master]
paths-ignore:
- '**.pdf'
- 'doc/**'
- "**.pdf"
- "**.typ"
- "doc/**"

permissions:
contents: write
Expand All @@ -20,15 +21,18 @@ jobs:
with:
fetch-depth: 0

- name: Build PDF with latexmk
uses: xu-cheng/latex-action@v3
with:
root_file: lukael_cv.tex
latexmk_use_xelatex: false
work_in_root_file_dir: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry

- name: Build CV
run: |
poetry install
poetry run rendercv render Jaewoo_Jung_CV.yaml

- name: Commit PDF back to repo
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore(pdf): update compiled PDF [skip ci]"
file_pattern: lukael_cv.pdf
file_pattern: Jaewoo_Jung_CV.pdf
Loading