From 409bb2cdba6d4e53f2233d122e49af827dbc540c Mon Sep 17 00:00:00 2001 From: Luca Date: Fri, 6 Sep 2024 20:01:43 +0200 Subject: [PATCH] Attempt fix CI --- .github/workflows/ci-build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index ec67729..cb138d8 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -33,6 +33,9 @@ jobs: with: python-version: '3.x' + - name: Install packages + run: apt update && apt install -y libgl1-mesa-dev + - name: Install poetry run: pip install -U poetry @@ -40,7 +43,7 @@ jobs: run: poetry install --no-root - name: Build site - run: mkdocs build + run: poetry run mkdocs build - name: Upload artifacts uses: actions/upload-artifact@v4