From 621fb0bc306ec874aa1eeed9adfb86a02fd5f768 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Thu, 9 Nov 2023 21:54:25 +0100 Subject: [PATCH] Update workflow --- .gitea/workflows/latex.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/latex.yaml b/.gitea/workflows/latex.yaml index 6e00fd6..6cbb493 100644 --- a/.gitea/workflows/latex.yaml +++ b/.gitea/workflows/latex.yaml @@ -10,16 +10,18 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + path: repo - name: Build LaTeX document uses: https://github.com/xu-cheng/texlive-action@v2 with: texlive_version: latest scheme: full - run: latexmk --shell-escape -pdf thesis.tex + run: latexmk --shell-escape -pdf repo/thesis.tex - name: Rename document - run: mv thesis.pdf facial-animation-using-inverse-kinematics.pdf + run: mv repo/thesis.pdf repo/facial-animation-using-inverse-kinematics.pdf - name: Upload artifact uses: actions/upload-artifact@v3 with: name: PDF - path: facial-animation-using-inverse-kinematics.pdf + path: repo/facial-animation-using-inverse-kinematics.pdf