diff --git a/.gitea/workflows/md-to-pdf.yml b/.gitea/workflows/md-to-pdf.yml index 09832bc..bb83aa6 100644 --- a/.gitea/workflows/md-to-pdf.yml +++ b/.gitea/workflows/md-to-pdf.yml @@ -12,18 +12,14 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install Pandoc and LaTeX + - name: Install Pandoc and basic LaTeX run: | sudo apt-get update - sudo apt-get install -y pandoc - sudo apt-get install -y texlive-latex-base texlive-fonts-recommended texlive-latex-extra + sudo apt-get install -y pandoc texlive-latex-base - - name: List files (para debug) - run: ls -la - - - name: Convert specific file + - name: Convert using pdflatex (alternativa) run: | - pandoc "RoteiroPitch.md" -o "RoteiroPitch.pdf" --pdf-engine=xelatex -V geometry:margin=1in + pandoc "RoteiroPitch.md" -o "RoteiroPitch.pdf" --pdf-engine=pdflatex -V geometry:margin=1in - name: Commit PDF to repository run: |