Skip to content

Commit

Permalink
Add new action for outputting PDF
Browse files Browse the repository at this point in the history
  • Loading branch information
Manel Villar committed Oct 1, 2024
1 parent c55396a commit d50d7a0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
34 changes: 24 additions & 10 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,34 @@ on:
jobs:
build:

runs-on: pandoc/latex
name: Convert Markdown to PDF

on:
push:
branches:
- main # Or any other branch you want to trigger the action

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Pandoc
run: sudo apt-get install -y pandoc

- name: configure
run: ./configure
- name: Install LaTeX dependencies
run: sudo apt-get install -y texlive-latex-recommended texlive-fonts-recommended texlive-latex-extra

- name: Install dependencies
run: make
- name: Convert Markdown to PDF
run: |
make pdf
- name: Archive PDF
uses: actions/upload-artifact@v2
- name: Upload PDF artifact
uses: actions/upload-artifact@v3
with:
name: pdf-resume
path: build/resume.pdf
name: resume.pdf
path: resume.pdf

4 changes: 2 additions & 2 deletions resume.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

## Experience

May 2020 - now
May 2020 - October 2024

: **Senior Test Software Developer** at Snom Technology GmbH 9 (Berlin, Germany)
: **Senior Software Test Developer** at Snom Technology GmbH 9 (Berlin, Germany)


Development of automation testing framework for SIP telophony devices interoperability (IoT).
Expand Down

0 comments on commit d50d7a0

Please sign in to comment.