From 4c1b5bee3a84233f11ef4f7e12c115315013384d Mon Sep 17 00:00:00 2001 From: spamegg Date: Mon, 25 Nov 2024 22:46:36 +0300 Subject: [PATCH] fixing directory in Github actions --- .github/workflows/workflow.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 4054408..c21746e 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -12,6 +12,7 @@ jobs: - name: Compile LaTeX document uses: xu-cheng/latex-action@v3 with: + working_directory: src root_file: Epp.tex latexmk_shell_escape: true - name: Release @@ -21,6 +22,6 @@ jobs: make_latest: true generate_release_notes: true preserve_order: true - files: Epp.pdf + files: src/Epp.pdf env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}