Skip to content

Commit 2d7aab5

Browse files
jonphippsclaude
andcommitted
debug: add artifact download debugging to troubleshoot CI validation failures
- Add debug step to show downloaded artifact structure - Help identify why sitemap files are not found during validation - Temporary debugging step to fix CI URL validation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 27365f8 commit 2d7aab5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/test-site-builds.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,15 @@ jobs:
201201
uses: actions/download-artifact@v4
202202
with:
203203
pattern: build-*
204-
merge-multiple: true
204+
path: .
205+
206+
- name: Debug - List downloaded artifacts
207+
run: |
208+
echo "=== Checking downloaded artifacts ==="
209+
find . -name "build" -type d | head -10
210+
find . -name "sitemap.xml" | head -10
211+
ls -la portal/ 2>/dev/null || echo "No portal directory"
212+
ls -la standards/*/build/ 2>/dev/null || echo "No standards build directories"
205213
206214
- name: Run URL validation tests
207215
run: |

0 commit comments

Comments
 (0)