From fb7fbaf484e0f9be2470bb08d43936c3f8127e4e Mon Sep 17 00:00:00 2001 From: ChUrl Date: Thu, 9 Nov 2023 21:47:16 +0100 Subject: [PATCH] Update workflow --- .gitea/workflows/latex.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/latex.yaml b/.gitea/workflows/latex.yaml index bf827f6..f9b9af4 100644 --- a/.gitea/workflows/latex.yaml +++ b/.gitea/workflows/latex.yaml @@ -11,14 +11,16 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - name: Build LaTeX document - uses: https://github.com/xu-cheng/texlive-action@v2 + uses: https://github.com/xu-cheng/latex-action@v3 with: - scheme: full - run: latexmk -shell-escape -pdf thesis.tex + texlive_version: latest + extra_packages: inkscape + latexmk_shell_escape: true + root_file: 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 + name: PDF path: facial-animation-using-inverse-kinematics.pdf