From 275ec3ea28860c323f79d0c64e742bc54d7ee852 Mon Sep 17 00:00:00 2001 From: Piotr Gawron Date: Sun, 28 Jul 2024 13:30:27 +0200 Subject: [PATCH] github actions added --- .github/workflows/build-latex.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build-latex.yml diff --git a/.github/workflows/build-latex.yml b/.github/workflows/build-latex.yml new file mode 100644 index 0000000..c0d013d --- /dev/null +++ b/.github/workflows/build-latex.yml @@ -0,0 +1,20 @@ +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 1 + uses: xu-cheng/latex-action@v3 + with: + working_directory: . + root_file: ask_template.tex + - name: Upload PDF file 1 + uses: actions/upload-artifact@v4 + with: + name: PDF1 + path: ask_template.pdf \ No newline at end of file