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

26 lines
673 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: https://github.com/xu-cheng/latex-action@v3
with:
root_file: thesis.tex
extra_packages: "inkscape"
latexmk_shell_escape: true
- 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