From f5be0f3e5cae83fb3b46e5af1f92dd59ed7a947f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 21 Nov 2021 05:27:21 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Install=20dependencies=20as=20su?= =?UTF-8?q?do?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-sphinx-report.yml | 8 +++++++- .github/workflows/build-sphinx-thesis.yml | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-sphinx-report.yml b/.github/workflows/build-sphinx-report.yml index 4d8681e..1c8a74a 100644 --- a/.github/workflows/build-sphinx-report.yml +++ b/.github/workflows/build-sphinx-report.yml @@ -60,7 +60,13 @@ jobs: working-directory: backend/ run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV - name: "Install LaTeX dependencies" - run: apt-get update -y && apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended + run: > + sudo apt-get update -y && + sudo apt-get install -y + latexmk + texlive-latex-recommended + texlive-latex-extra + texlive-fonts-recommended - name: "Build LaTeX document with Sphinx" working-directory: report/ run: | diff --git a/.github/workflows/build-sphinx-thesis.yml b/.github/workflows/build-sphinx-thesis.yml index 70618b2..624c9c7 100644 --- a/.github/workflows/build-sphinx-thesis.yml +++ b/.github/workflows/build-sphinx-thesis.yml @@ -60,7 +60,13 @@ jobs: working-directory: backend/ run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV - name: "Install LaTeX dependencies" - run: apt-get update -y && apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended + run: > + sudo apt-get update -y && + sudo apt-get install -y + latexmk + texlive-latex-recommended + texlive-latex-extra + texlive-fonts-recommended - name: "Build LaTeX document with Sphinx" working-directory: thesis/ run: |