fix bias #58
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 For Texto | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build-pdf: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up TeX Live | |
| uses: xu-cheng/latex-action@v2 | |
| with: | |
| root_file: main.tex | |
| working_directory: Latex_V/Texto/new | |
| latexmk_use_xelatex: true | |
| - name: Upload PDF artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: PDF | |
| path: Latex_V/new/main.pdf | |