From e08cfa6d0e8e03ca9553a810c90e430695e00063 Mon Sep 17 00:00:00 2001 From: Ramspopoo Date: Sat, 10 Sep 2022 15:04:28 +0200 Subject: [PATCH] Create Github Action to compile LaTeX file to Pdf --- .github/workflows/buildLatex.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/buildLatex.yml diff --git a/.github/workflows/buildLatex.yml b/.github/workflows/buildLatex.yml new file mode 100644 index 0000000..61aa4a7 --- /dev/null +++ b/.github/workflows/buildLatex.yml @@ -0,0 +1,14 @@ +name: Build LaTeX document +on: [push] +jobs: + build_latex: + runs-on: ubuntu-latest + steps: + - name: Checkout Git repository + uses: actions/checkout@v2 + - name: Compile LaTeX document + uses: xu-cheng/latex-action@v2 + with: + root_file: | + Dokumentation/src/Dokumentation.tex + Storyboard/src/Storyboard.tex \ No newline at end of file