diff --git a/.github/workflows/deploy-pdf.yml b/.github/workflows/deploy-pdf.yml new file mode 100644 index 0000000..8657453 --- /dev/null +++ b/.github/workflows/deploy-pdf.yml @@ -0,0 +1,21 @@ +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: main.pdf