Skip to content

Latest commit

 

History

History
79 lines (70 loc) · 1.71 KB

cv.md

File metadata and controls

79 lines (70 loc) · 1.71 KB
layout title image description nav-menu
post
CURRICULUM VITAE
assets/images/pic00.jpg
Resume rendered from markdown to pdf via github actions
true

English | Français

<style> .pdf-container { position: relative; width: 100%; height: 100vh; } .pdf-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: white; z-index: -1; } .pdf-embed { position: relative; width: 100%; height: 100%; } </style>

Resume rendered from markdown to pdf via github actions

pandoc.yml {% highlight yaml%} name: Pandoc on: push: paths: - "Pandoc/**" branches: - gh-pages

jobs: convert_via_pandoc: runs-on: ubuntu-18.04 steps: - name: Set up Git repository uses: actions/checkout@v3 - name: Convert with Pandoc uses: docker://pandoc/latex with: args: >- -o Pandoc/resume.pdf Pandoc/resume.md - name: Commit PDF run: | git config user.name github-actions git config user.email [email protected] git add Pandoc/resume.pdf git commit -m "Push resume.pdf" git push - uses: actions/upload-artifact@master with: name: resume.pdf path: Pandoc/resume.pdf

{% endhighlight %}