All checks were successful
Build LaTeX document / build-latex (push) Successful in 50s
22 lines
725 B
YAML
22 lines
725 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/texlive:latest latexmk -shell-escape -pdf thesis.tex
|
|
- name: Rename artifact
|
|
run: mv thesis.pdf interrupt-handling-using-the-x86-apic.pdf
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: interrupt-handling-using-the-x86-apic.pdf
|
|
path: interrupt-handling-using-the-x86-apic.pdf
|