Skip to content

Commit d736e9d

Browse files
committed
ci(docs): trigger docs deploy when the deploy scripts change
The Documentation workflow runs dev-tools/docs/mike_deploy.sh and smoke_check_pages.sh, but its push/PR path filters did not include dev-tools/docs/**. A fix that touched only those scripts therefore merged without ever re-running the docs deploy, leaving the live site stale. Add dev-tools/docs/** to both path filters (and .github/workflows/docs.yml to the PR filter for parity) so script changes trigger a deploy.
1 parent 555f9d1 commit d736e9d

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/docs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [main]
66
paths:
77
- 'docs/**'
8+
- 'dev-tools/docs/**'
89
- 'src/**/cli/**'
910
- 'README.md'
1011
- '*.md'
@@ -14,10 +15,12 @@ on:
1415
branches: [main]
1516
paths:
1617
- 'docs/**'
18+
- 'dev-tools/docs/**'
1719
- 'src/**/cli/**'
1820
- 'README.md'
1921
- '*.md'
2022
- 'pyproject.toml'
23+
- '.github/workflows/docs.yml'
2124
# workflow_dispatch: allows triggering docs builds manually from the Actions UI
2225
workflow_dispatch:
2326
# NOTE: workflow_run trigger removed. It fired after "Quality Checks" and

0 commit comments

Comments
 (0)