1
Files
facial-animation-using-inve…/.gitea/workflows/latex.yaml
ChUrl 7220643adf
All checks were successful
Build LaTeX document / build-latex (push) Successful in 26s
Update workflow to fix artifact filename
2023-11-22 11:41:49 +01:00

22 lines
744 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/docker-texlive:latest latexmk -shell-escape -pdf thesis.tex
- name: Rename artifact
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