Skip to content

Update blank.yml

Update blank.yml #13

Workflow file for this run

name: Build LaTeX document
on: [push]
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@v2
with:
pre_compile: "tlmgr update --self && tlmgr update --all"
root_file: |
main.tex
main.tex
post_compile: "latexmk -c"
- name: Upload document build
uses: actions/upload-artifact@v3
with:
name: PDF
path: main.pdf