Skip to content

Commit 882867f

Browse files
committed
Debug: add workspace size check to Linux job
1 parent 414ced1 commit 882867f

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,17 @@ jobs:
9797
- name: Set build number
9898
run: sed -i "s/^build_number = .*/build_number = ${{ github.run_number }}/" perry.toml
9999

100+
- name: Debug workspace size
101+
run: |
102+
echo "=== Project dir ==="
103+
du -sh .
104+
du -sh * | sort -rh | head -10
105+
echo "=== Hone-editor ==="
106+
du -sh ../hone/hone-editor
107+
du -sh ../hone/hone-editor/* 2>/dev/null | sort -rh | head -10
108+
echo "=== node_modules ==="
109+
ls -la node_modules/ 2>/dev/null || echo "no node_modules"
110+
100111
- name: Publish Linux
101112
run: perry publish linux
102113

0 commit comments

Comments
 (0)