mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 08:33:36 +00:00
22 lines
556 B
YAML
22 lines
556 B
YAML
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
|
|
cd paper && make pdf
|
|
- name: Upload PDF
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: thesis-pdf
|
|
path: paper/build/main.pdf
|