Create release-pdf-for-review.yml
This commit is contained in:
parent
4f817048ba
commit
ffba0d641d
1 changed files with 21 additions and 0 deletions
21
.github/workflows/release-pdf-for-review.yml
vendored
Normal file
21
.github/workflows/release-pdf-for-review.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
name: Compile Latex and release PDF for review
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
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: undergraduate-thesis-for-review
|
||||
path: main.pdf
|
Loading…
Reference in a new issue