1
Files
facial-animation-using-inve…/.gitea/workflows/latex.yaml
Christoph Urlacher af7a430c0c
All checks were successful
Build LaTeX document / build-latex (push) Successful in 37s
Finally fix shitty LaTeX workflow
2023-11-21 22:31:07 +01:00

28 lines
927 B
YAML

name: Build LaTeX document
on:
push:
branches: [master]
jobs:
build-latex:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
# - name: Build LaTeX document
# uses: http://gitlab.local.chriphost.de:3000/christoph/texlive-action@master
# with:
# texlive_version: latest
# scheme: full
# run: latexmk --shell-escape -pdf thesis.tex
- name: Build LaTeX document
run: docker run --rm --volumes-from ${{ env.JOB_CONTAINER_NAME }} -w ${{ github.workspace }} 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: PDF
path: facial-animation-using-inverse-kinematics.pdf