File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 47
47
deploy-message : " Preview Deploy from GitHub Actions"
48
48
env :
49
49
NETLIFY_AUTH_TOKEN : ${{ secrets.NETLIFY_AUTH_TOKEN }}
50
- NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
50
+ NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
51
+ - name : Install latex dependencies
52
+ run : |
53
+ sudo apt-get -qq update
54
+ sudo apt-get install -y \
55
+ texlive-latex-recommended \
56
+ texlive-latex-extra \
57
+ texlive-fonts-recommended \
58
+ texlive-fonts-extra \
59
+ texlive-xetex \
60
+ latexmk \
61
+ xindy
62
+ - name : Build PDF from LaTeX
63
+ shell : bash -l {0}
64
+ run : |
65
+ jb build lectures --builder pdflatex --path-output ./ -n --keep-going
66
+ - name : Save Build as Artifact
67
+ uses : actions/upload-artifact@v1
68
+ with :
69
+ name : _build
70
+ path : _build
You can’t perform that action at this time.
0 commit comments