From 2f9eb7bed45eccaf22d2b509302704383025dc47 Mon Sep 17 00:00:00 2001 From: Luke Richardson Date: Thu, 22 Feb 2024 11:33:34 +0000 Subject: [PATCH] ahhh actions failing - trying to install requirements --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83d98394..c3ee4b85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,10 @@ jobs: mkdocs-material- - run: sudo apt-get install pngquant - run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt - run: mkdocs gh-deploy --force env: GH_TOKEN: ${{ secrets.GH_TOKEN }}