From 7d81c43e7c065053231579edcae4a548306279d0 Mon Sep 17 00:00:00 2001 From: lukas-heiligenbrunner Date: Mon, 30 Sep 2024 14:27:37 +0200 Subject: [PATCH] fix build path of src files --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f05ab6d..4556d0a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,7 @@ jobs: # Compile the LaTeX document (first pass) - name: Compile LaTeX (first pass) run: | + cd src pdflatex -interaction=nonstopmode -halt-on-error -file-line-error main.tex bibtex main pdflatex -interaction=nonstopmode -halt-on-error -file-line-error main.tex @@ -34,4 +35,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: compiled-latex - path: main.pdf \ No newline at end of file + path: src/main.pdf \ No newline at end of file