Skip to content

Commit af9bedf

Browse files
authored
Merge pull request #3 from Lukael/develop
Fix CV format from Latex to rendercv
2 parents 7f65231 + 8bb1721 commit af9bedf

9 files changed

Lines changed: 1476 additions & 625 deletions

File tree

Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
name: Build LaTeX and commit PDF
1+
name: Build CV and commit PDF
22

33
on:
44
pull_request:
5-
branches: [ master ]
5+
branches: [master]
66
paths-ignore:
7-
- '**.pdf'
8-
- 'doc/**'
7+
- "**.pdf"
8+
- "**.typ"
9+
- "doc/**"
910

1011
permissions:
1112
contents: write
@@ -20,15 +21,18 @@ jobs:
2021
with:
2122
fetch-depth: 0
2223

23-
- name: Build PDF with latexmk
24-
uses: xu-cheng/latex-action@v3
25-
with:
26-
root_file: lukael_cv.tex
27-
latexmk_use_xelatex: false
28-
work_in_root_file_dir: true
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install poetry
28+
29+
- name: Build CV
30+
run: |
31+
poetry install
32+
poetry run rendercv render Jaewoo_Jung_CV.yaml
2933
3034
- name: Commit PDF back to repo
3135
uses: stefanzweifel/git-auto-commit-action@v5
3236
with:
3337
commit_message: "chore(pdf): update compiled PDF [skip ci]"
34-
file_pattern: lukael_cv.pdf
38+
file_pattern: Jaewoo_Jung_CV.pdf

0 commit comments

Comments
 (0)