From d984fd27d987f374c4b6c8eda47a98be640e3c73 Mon Sep 17 00:00:00 2001 From: Jan Kowalczyk Date: Wed, 12 Mar 2025 14:05:34 +0100 Subject: [PATCH] build latex gitea workflow --- .gitea/workflows/latex.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/latex.yaml diff --git a/.gitea/workflows/latex.yaml b/.gitea/workflows/latex.yaml new file mode 100644 index 0000000..55a0f9b --- /dev/null +++ b/.gitea/workflows/latex.yaml @@ -0,0 +1,17 @@ +name: Build LaTeX document +on: [push] +jobs: + build_latex: + runs-on: ubuntu-latest + steps: + - name: Set up Git repository + uses: actions/checkout@v4 + - name: Compile LaTeX document + uses: xu-cheng/latex-action@v3 + with: + root_file: thesis/Main.tex + - name: Upload PDF file + uses: actions/upload-artifact@v4 + with: + name: PDF + path: Main.pdf