Skip to content

Commit c7b52aa

Browse files
jonphippsclaude
andcommitted
debug: add detailed artifact structure debugging
- Check if artifacts are downloading to expected locations - Identify whether issue is with upload or download process - Temporary debugging to fix sitemap validation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 09ba5f9 commit c7b52aa

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,19 @@ jobs:
203203
pattern: build-*
204204
path: .
205205

206+
- name: Debug - Check artifact structure
207+
run: |
208+
echo "=== Current directory structure ==="
209+
ls -la
210+
echo "=== Looking for portal directory ==="
211+
ls -la portal/ 2>/dev/null || echo "No portal directory found"
212+
echo "=== Looking for standards directory ==="
213+
ls -la standards/ 2>/dev/null || echo "No standards directory found"
214+
echo "=== Looking for build-* directories ==="
215+
ls -la build-*/ 2>/dev/null || echo "No build-* directories found"
216+
echo "=== Searching for sitemap.xml files ==="
217+
find . -name "sitemap.xml" -type f | head -10
218+
206219
- name: Run URL validation tests
207220
run: |
208221
SITE=${{ github.event.inputs.site || 'all' }}

0 commit comments

Comments
 (0)