From 6b9e93011877546dc918d62b9b0ca46e41424014 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Thu, 12 Dec 2024 12:19:13 +0000 Subject: [PATCH] github: add an update step before installing texlive MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise you run into issues of the upstream has updated packages since the last snapshot. Signed-off-by: Alex Bennée --- .github/workflows/deploy.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 2cc39e3..369b5a5 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -10,6 +10,7 @@ jobs: - uses: actions/checkout@v4 - name: Install Tools run: | + sudo apt update sudo apt install texlive-full - name: Build Docs