From 53f90522c66bb4ca7047d86696f828d861170911 Mon Sep 17 00:00:00 2001 From: robogg133 Date: Mon, 3 Nov 2025 12:04:17 -0300 Subject: [PATCH] outra action --- .gitea/workflows/md-to-pdf.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) 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: |