From 3fb8af1a98a8647af8c04291fc3913a23150595a Mon Sep 17 00:00:00 2001 From: Mirko Milovanovic Date: Sun, 9 Feb 2025 22:17:59 +0100 Subject: [PATCH] Fix working directory and artifact path in LaTeX workflow --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2c45ec7..727f105 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,13 +12,15 @@ jobs: steps: - name: Set up Git repository uses: actions/checkout@v4.2.2 + with: + path: /Tesi - name: Compile LaTeX document uses: xu-cheng/latex-action@3.2.0 with: root_file: Tesi.tex docker_image: ghcr.io/xu-cheng/texlive-full:20250101 - working_directory: / + working_directory: /Tesi - name: Check LaTeX compilation run: | @@ -29,4 +31,4 @@ jobs: uses: actions/upload-artifact@v4.6.0 with: name: PDF - path: Tesi.pdf \ No newline at end of file + path: /Tesi/Tesi.pdf \ No newline at end of file