Skip to content

Commit f6d0ced

Browse files
committed
debug: count output files by extension before wrangler deploy
1 parent ab74752 commit f6d0ced

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/arch-docs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ jobs:
3232
supermodel-api-key: ${{ secrets.SUPERMODEL_API_KEY }}
3333
base-url: /bun/
3434

35+
- name: Diagnose output
36+
run: |
37+
echo "Total files: $(find ./arch-docs-output -type f | wc -l)"
38+
echo "By extension:"
39+
find ./arch-docs-output -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn | head -20
40+
3541
- name: Install wrangler
3642
run: npm install -g wrangler@3
3743

0 commit comments

Comments
 (0)