1

Update workflow
Some checks failed
Build LaTeX document / build-latex (push) Failing after 12s

This commit is contained in:
2023-11-09 21:57:04 +01:00
parent 5bd4395299
commit 3908f8cad7

View File

@ -10,18 +10,18 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: List - name: List directory
run: ls -a . run: ls -a .
- name: Build LaTeX document - name: Build LaTeX document
uses: https://github.com/xu-cheng/texlive-action@v2 uses: https://github.com/xu-cheng/texlive-action@v2
with: with:
texlive_version: latest texlive_version: latest
scheme: full scheme: full
run: latexmk --shell-escape -pdf repo/thesis.tex run: latexmk --shell-escape -pdf ./thesis.tex
- name: Rename document - name: Rename document
run: mv repo/thesis.pdf repo/facial-animation-using-inverse-kinematics.pdf run: mv ./thesis.pdf ./facial-animation-using-inverse-kinematics.pdf
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: PDF name: PDF
path: repo/facial-animation-using-inverse-kinematics.pdf path: ./facial-animation-using-inverse-kinematics.pdf