From 96eadb722fad084b36ab51074683505fd80a6197 Mon Sep 17 00:00:00 2001 From: Matteo Bongiovanni <40599507+MatBon01@users.noreply.github.com> Date: Fri, 16 Jun 2023 15:27:53 +0100 Subject: [PATCH] Try fix missing package in latex compilation --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 02abc91..cf3ed51 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: description: "Interim report compiling" state: "pending" - name: Install latex dependencies - run: sudo apt-get install -y latexmk texlive-font-utils texlive-latex-extra + run: sudo apt-get install -y latexmk texlive-font-utils texlive-latex-extra texlive-science - uses: actions/checkout@v3 - name: Compile interim report run: make -C report interim.pdf @@ -62,7 +62,7 @@ jobs: description: "Final report compiling" state: "pending" - name: Install latex dependencies - run: sudo apt-get install -y latexmk texlive-font-utils texlive-latex-extra + run: sudo apt-get install -y latexmk texlive-font-utils texlive-latex-extra texlive-science - uses: actions/checkout@v3 - name: Compile final report run: make -C report final.pdf