From a1b83cae4a27cdba9cc29dfe9a29126ba8f3343d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filipe=20C=C3=A2ncio?= Date: Sun, 22 Oct 2023 18:05:29 -0300 Subject: [PATCH] Update latex_build.yml --- .github/workflows/latex_build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/latex_build.yml b/.github/workflows/latex_build.yml index d96ad6f..5149eae 100644 --- a/.github/workflows/latex_build.yml +++ b/.github/workflows/latex_build.yml @@ -8,12 +8,13 @@ jobs: - name: Set up Git repository uses: actions/checkout@v3 - name: Compile LaTeX document - uses: dante-ev/latex-action@latest + uses: xu-cheng/latex-action@v2 with: - root_file: article/main.tex - args: -synctex=0 -interaction=nonstopmode --shell-escape -pdf -file-line-error + root_file: main.tex + working_directory: article/ + continue_on_error: true - name: Save PDF as Artifact uses: actions/upload-artifact@v3 with: - name: article/main.pdf + name: main path: article/main.pdf