Files
interrupt-handling-using-th…/.gitea/workflows/latex.yaml
T
christoph 4630e3cf33
Build LaTeX document / build-latex (push) Failing after 6s
Update workflow (install inkscape)
2023-11-21 23:54:31 +01:00

22 lines
769 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 }} --env INPUT_EXTRA_SYSTEM_PACKAGES=inkscape ghcr.io/xu-cheng/texlive-full:latest latexmk -shell-escape -pdf thesis.tex
- name: Rename document
run: mv thesis.pdf facial-animation-using-inverse-kinematics.pdf
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: facial-animation-using-inverse-kinematics.pdf
path: facial-animation-using-inverse-kinematics.pdf