From cad0f0ee52ec0929cdba976f454293e84596d5a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Mur=C3=A7a?= <106257713+leomurca@users.noreply.github.com> Date: Mon, 5 Feb 2024 12:15:32 -0300 Subject: [PATCH] Create deploy-pdf.yml --- .github/workflows/deploy-pdf.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/deploy-pdf.yml diff --git a/.github/workflows/deploy-pdf.yml b/.github/workflows/deploy-pdf.yml new file mode 100644 index 0000000..92149a4 --- /dev/null +++ b/.github/workflows/deploy-pdf.yml @@ -0,0 +1,23 @@ +name: Compile Latex and Release PDF + +on: + push: + branches: [ "main" ] + +jobs: + build_latex: + runs-on: ubuntu-latest + steps: + + - name: Set up Git repository + uses: actions/checkout@v3 + + - name: Compile LaTeX document + uses: xu-cheng/latex-action@v3 + with: + root_file: main.tex + - name: Upload PDF file + uses: actions/upload-artifact@v3 + with: + name: PDF + path: test-file-main.pdf