bachelor-thesis/.github/workflows/build.yml

17 lines
424 B
YAML
Raw Normal View History

2024-09-06 13:51:52 +00:00
name: Build LaTeX document
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4
2024-09-13 12:59:17 +00:00
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: src/main.tex
2024-09-06 13:51:52 +00:00
- name: Upload PDF file
uses: actions/upload-artifact@v4
with:
name: PDF
path: src/main.pdf