whoami/.gitea/workflows/build.yml
Yigit Colakoglu 44d5e3c74a
Some checks failed
Build CV / build-pdf (push) Failing after 12s
fix syntx
2025-09-02 09:23:48 +02:00

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