Files
interrupt-handling-using-th…/.gitea/workflows/latex.yaml
T
christoph 7b60413ec3
Build LaTeX document / build-latex (push) Successful in 49s
Finally (?) fix latex workflow
2023-11-22 11:30:33 +01:00

20 lines
602 B
YAML

name: Build LaTeX document
on:
push:
branches: [master, main]
jobs:
build-latex:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build LaTeX document
run: docker run --rm --volumes-from ${{ env.JOB_CONTAINER_NAME }} --workdir ${{ github.workspace }} gitea.vps.chriphost.de/christoph/docker-texlive:latest latexmk -shell-escape -pdf thesis.tex
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: interrupt-handling-using-the-x86-apic.pdf
path: thesis.pdf