name: Build PDF on: push: branches: [ main ] pull_request: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: xu-cheng/texlive-action@v2 with: scheme: small run: | tlmgr install biber biblatex csquotes geometry microtype hyperref cleveref siunitx booktabs graphics caption latexmk make pdf working-directory: paper - name: Upload PDF uses: actions/upload-artifact@v4 with: name: thesis-pdf path: build/main.pdf working-directory: paper