32 lines
562 B
YAML
32 lines
562 B
YAML
name: Build CV
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build-pdf:
|
|
runs-on: ubuntu-latest
|
|
container: texlive/texlive:latest
|
|
|
|
steps:
|
|
- name: Install node :(
|
|
run: |
|
|
apt update
|
|
apt install npm
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build PDF
|
|
run: make pdf
|
|
|
|
- name: Upload PDF artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: curriculum-vitae
|
|
path: main.pdf
|
|
retention-days: 30
|