whoami/.gitea/workflows/build.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 17: cannot unmarshal !!seq into string
2025-09-02 09:22:06 +02:00

31 lines
563 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