diff --git a/.github/workflows/latex.yml b/.github/workflows/latex.yml index 67d5be9..05216be 100644 --- a/.github/workflows/latex.yml +++ b/.github/workflows/latex.yml @@ -1 +1,17 @@ -name: Latex-Compiler +name: Latex Compiler +on: + push: + branches: main +jobs: + compiler: + name: Compiler + runs-on: ubuntu-latest + steps: + - name: Open DOCS Repository + uses: actions/checkout@v4 + - name: Compile LaTeX Source Code + uses: xu-cheng/latex-action@v3 + with: + root_file: main.tex + latexmk_use_xelatex: true + continue_on_error: false