whoami/.gitea/workflows/build.yml
Yigit Colakoglu efc4720451
All checks were successful
Build CV / build-pdf (push) Successful in 2m6s
asd
2025-09-02 09:24:39 +02:00

32 lines
568 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 -y
apt install -y 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