From 99c4fee590c613f4f67f134743eb0bc468ef4141 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Mur=C3=A7a?= Date: Thu, 6 Mar 2025 23:07:35 -0300 Subject: [PATCH] Update release --- .forgejo/workflows/release.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 8d29d70..a936ace 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -21,10 +21,15 @@ jobs: with: token: ${{ secrets.RELEASE_TOKEN }} # Use RELEASE_TOKEN instead of GITHUB_TOKEN + - name: Install LaTeX + run: | + apt-get update + apt-get install -y texlive texlive-latex-extra texlive-fonts-recommended + + # Step 3: Compile the LaTeX document (replace 'document.tex' with your actual file name) - name: Compile LaTeX document - uses: https://git.leomurca.xyz/leomurca/latex-action@v3 - with: - root_file: main.tex + run: | + pdflatex main.tex - name: Create Release id: create_release @@ -42,5 +47,5 @@ jobs: uses: actions/forgejo-release@v1 with: tag_name: ${{ github.ref_name }} - files: "leonardo_murca_resume.pdf" + files: "main.pdf" token: ${{ secrets.RELEASE_TOKEN }} \ No newline at end of file