Create deploy-pdf.yml
This commit is contained in:
parent
2a2a17a4e6
commit
cad0f0ee52
1 changed files with 23 additions and 0 deletions
23
.github/workflows/deploy-pdf.yml
vendored
Normal file
23
.github/workflows/deploy-pdf.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
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:
|
||||
root_file: main.tex
|
||||
- name: Upload PDF file
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: PDF
|
||||
path: test-file-main.pdf
|
Loading…
Reference in a new issue