1
Files
facial-animation-using-inve…/.gitea/workflows/latex.yaml
ChUrl 621fb0bc30
Some checks failed
Build LaTeX document / build-latex (push) Failing after 5s
Update workflow
2023-11-09 21:54:25 +01:00

28 lines
735 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
with:
path: repo
- name: Build LaTeX document
uses: https://github.com/xu-cheng/texlive-action@v2
with:
texlive_version: latest
scheme: full
run: latexmk --shell-escape -pdf repo/thesis.tex
- name: Rename document
run: mv repo/thesis.pdf repo/facial-animation-using-inverse-kinematics.pdf
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: PDF
path: repo/facial-animation-using-inverse-kinematics.pdf