From 3b8f55567611860cf8298e3c0a502d50675c568b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Gr=C3=B3dek?= Date: Fri, 3 Nov 2023 12:36:35 +0100 Subject: [PATCH] Fix documentation generation job --- .github/workflows/doumentation.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/doumentation.yml b/.github/workflows/doumentation.yml index 48ac152..5f7b9eb 100644 --- a/.github/workflows/doumentation.yml +++ b/.github/workflows/doumentation.yml @@ -1,4 +1,4 @@ -name: CI +name: Build documentation on: push: @@ -16,12 +16,12 @@ jobs: uses: actions/cache@v2 with: path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Install Dependencies - run: pip install -r requirements.txt + run: pip install -r requirements-dev.txt - name: Build docs run: ./build_docs.sh