diff --git a/.gitea/workflows/latex.yaml b/.gitea/workflows/latex.yaml new file mode 100644 index 0000000..0397ec7 --- /dev/null +++ b/.gitea/workflows/latex.yaml @@ -0,0 +1,19 @@ +name: Build LaTeX document + +on: + push: + branches: [master, main] + +jobs: + build-latex: + runs-on: texlive-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Build LaTeX document + run: latexmk -shell-escape -pdf .tex + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: + path: .pdf