From cd9a7d9355ffb53ac2559d0a691e39f4186fab01 Mon Sep 17 00:00:00 2001 From: Caleb Burke Date: Tue, 14 Jul 2026 18:51:58 -0700 Subject: [PATCH] Build resume workflow --- .gitea/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..7c332a6 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,26 @@ +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/latex-action@v3 + with: + root_file: resume.tex + + - name: Upload PDF artifact + uses: actions/upload-artifact@v4 + with: + name: resume + path: resume.pdf