From 08b25879f643a890594944197b284ac65aabc42f Mon Sep 17 00:00:00 2001 From: Jan Kowalczyk Date: Wed, 12 Mar 2025 14:19:16 +0100 Subject: [PATCH] workflow testing --- .gitea/workflows/latex.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/latex.yaml b/.gitea/workflows/latex.yaml index 55a0f9b..9f26566 100644 --- a/.gitea/workflows/latex.yaml +++ b/.gitea/workflows/latex.yaml @@ -9,9 +9,12 @@ jobs: - name: Compile LaTeX document uses: xu-cheng/latex-action@v3 with: - root_file: thesis/Main.tex + root_file: Main.tex + latexmk_shell_escape: true + latexmk_use_xelatex: true + working_directory: thesis - name: Upload PDF file uses: actions/upload-artifact@v4 with: - name: PDF - path: Main.pdf + name: latest-thesis + path: thesis/Main.pdf