From f1297b49c06d6c9d69b3a1d40d264ebbb8b24cf2 Mon Sep 17 00:00:00 2001 From: Sewer56 Date: Fri, 24 Apr 2026 20:58:13 +0100 Subject: [PATCH] fix(ci): remove unsupported docs-directory input, add config-file The devops-mkdocs action v1 no longer accepts docs-directory. Added config-file: docs/mkdocs.yml so the action finds the config, which already contains docs_dir: src for the docs directory. --- .github/workflows/deploy-mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-mkdocs.yml b/.github/workflows/deploy-mkdocs.yml index 7735771..576c60f 100644 --- a/.github/workflows/deploy-mkdocs.yml +++ b/.github/workflows/deploy-mkdocs.yml @@ -18,7 +18,7 @@ jobs: - name: Deploy MkDocs uses: Reloaded-Project/devops-mkdocs@v1 with: + config-file: docs/mkdocs.yml requirements: ./docs/requirements.txt publish-to-pages: ${{ github.event_name == 'push' }} checkout-current-repo: true - docs-directory: docs