Files
resume/.gitea/workflows/build.yml
T
burkkyy b387c9c94a
Build Resume PDF / build (push) Failing after 2m20s
swapping to texlive-action
2026-07-14 20:10:12 -07:00

28 lines
580 B
YAML

name: Build Resume PDF
on:
push:
paths:
- "resume.tex"
- ".gitea/workflows/build.yml"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Compile LaTeX document
uses: xu-cheng/texlive-action@v3
with:
run: |
latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode resume.tex
- name: Upload PDF artifact
uses: actions/upload-artifact@v3
with:
name: resume
path: resume.pdf