File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build LaTeX document
2+
3+ on :
4+
5+ pull_request :
6+ branches :
7+ - master
8+
9+ jobs :
10+ build_latex :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Cancel Previous Runs
14+ uses : styfle/cancel-workflow-action@0.7.0
15+
16+ - name : Set up Git repository
17+ uses : actions/checkout@v5
18+ - run : sudo apt-get update
19+ - run : sudo apt install fonts-cmu texlive-lang-cyrillic texlive-luatex texlive-latex-extra texlive-bibtex-extra texlive-science texlive-plain-generic latexmk --yes
20+ - run : sudo apt install libpdf-api2-perl python3-pygments --yes
21+ - run : sudo apt install texlive-fonts-recommended --yes
22+
23+ - name : build document
24+ run : latexmk core-design-document.tex
25+
26+ - name : Upload compiled document
27+ uses : actions/upload-artifact@v4
28+ with :
29+ name : core-design-document
30+ path : core-design-document.pdf
You can’t perform that action at this time.
0 commit comments