From 05756fcc7bfcfba99f319ae090a334ad8b0b3086 Mon Sep 17 00:00:00 2001 From: lukas-heilgenbrunner Date: Fri, 6 Sep 2024 15:51:52 +0200 Subject: [PATCH] add build action --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..f3272be --- /dev/null +++ b/.github/workflows/build.yml @@ -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: src/main.tex + - name: Upload PDF file + uses: actions/upload-artifact@v4 + with: + name: PDF + path: src/main.pdf \ No newline at end of file