From 9cee9e02d0f6a002f3b865420bd0c8d259a9701f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nils=20m=C3=A5s=C3=A9n?= Date: Mon, 19 Sep 2022 14:19:38 +0200 Subject: [PATCH] ci: fix docs generation --- .github/workflows/publish-docs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 2ec5423..e7ac0c7 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -17,13 +17,14 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Install mkdocs + - name: Setup python uses: actions/setup-python@v4 with: python-version: '3.10' cache: 'pip' cache-dependency-path: | docs-requirements.txt + - name: Install mkdocs run: | pip install -r docs-requirements.txt - name: Generate docs