add schichten #28
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .github/workflows/build_latex.yml | |
| name: Build LaTeX PDF | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git Repository | |
| uses: actions/checkout@v2 | |
| - name: Build LaTeX files | |
| uses: xu-cheng/latex-action@v2 | |
| with: | |
| root_file: vs-script-first-v01.tex | |
| latexmk_use_lualatex: true | |
| - name: Check if PDF file is generated | |
| run: | | |
| file vs-script-first-v01.pdf | grep -q ' PDF ' | |
| # - name: Upload PDF | |
| # uses: actions/upload-artifact@v2 | |
| # with: | |
| # name: PDF | |
| # path: vs-script-first-v01.pdf |