From 96c445ecd7dcacaee9766bb4942d7566cec4cad5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=CC=8Cimon=20S=CC=8Cesta=CC=81k?= Date: Fri, 20 Feb 2026 14:18:35 +0000 Subject: [PATCH] fix(ci): Use correct working directory for deploy-docs workflow All docs-related files live under .github/ in this org repo. The workflow steps were referencing paths without the .github/ prefix, causing setup-python cache to fail finding requirements-docs.txt. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/deploy-docs.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 48b2019..4db3288 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -8,10 +8,10 @@ on: - '.github/workflows/*.yml' - '.github/actions/*/action.yml' - '.github/actions/*/README.md' - - 'docs/**' - - 'mkdocs.yml' - - 'scripts/**' - - 'requirements-docs.txt' + - '.github/docs/**' + - '.github/mkdocs.yml' + - '.github/scripts/**' + - '.github/requirements-docs.txt' workflow_dispatch: permissions: @@ -24,6 +24,9 @@ concurrency: jobs: deploy: runs-on: ubuntu-latest + defaults: + run: + working-directory: .github steps: - uses: actions/checkout@v6 with: @@ -33,7 +36,7 @@ jobs: with: python-version: '3.x' cache: 'pip' - cache-dependency-path: requirements-docs.txt + cache-dependency-path: .github/requirements-docs.txt - run: pip install -r requirements-docs.txt - name: Determine version and alias id: version