2024-02-05 15:15:32 +00:00
|
|
|
name: Compile Latex and Release PDF
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
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@v3
|
|
|
|
with:
|
2024-02-05 16:44:43 +00:00
|
|
|
root_file: main.tex
|
2024-02-05 15:15:32 +00:00
|
|
|
- name: Upload PDF file
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: PDF
|
2024-02-05 16:44:43 +00:00
|
|
|
path: main.pdf
|