From 5728448245d63a7fe5c45bab8bc41b3a17e2ea05 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Thu, 9 Nov 2023 22:17:57 +0100 Subject: [PATCH] Update workflow --- .gitea/workflows/latex.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/latex.yaml b/.gitea/workflows/latex.yaml index 5965ad9..1772d2f 100644 --- a/.gitea/workflows/latex.yaml +++ b/.gitea/workflows/latex.yaml @@ -10,18 +10,16 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 - - name: List directory - run: ls -a . - name: Build LaTeX document - uses: https://github.com/xu-cheng/texlive-action@v2 + uses: https://github.com/xu-cheng/texlive-action@v1 with: texlive_version: latest scheme: full - run: latexmk --shell-escape -pdf ./thesis.tex + run: latexmk --shell-escape -pdf thesis.tex - name: Rename document - run: mv ./thesis.pdf ./facial-animation-using-inverse-kinematics.pdf + run: mv thesis.pdf 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: facial-animation-using-inverse-kinematics.pdf