outra action

This commit is contained in:
2025-11-03 12:04:17 -03:00
parent 4fa7276898
commit 53f90522c6

View File

@@ -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: |