publikation nicht skaliert #18
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
| name: Build LaTeX Document | |
| on: [push] | |
| jobs: | |
| build_latex: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Git repository | |
| uses: actions/checkout@v4 # Aktualisiert auf v4 | |
| - name: Compile LaTeX document | |
| uses: xu-cheng/latex-action@v3 # Auch hier gibt es oft neuere Versionen | |
| with: | |
| root_file: iul.tex | |
| - name: Upload PDF | |
| uses: actions/upload-artifact@v4 # Das löst deinen Fehler | |
| with: | |
| name: iul-pdf | |
| path: iul.pdf |