We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 414ced1 commit 882867fCopy full SHA for 882867f
1 file changed
.github/workflows/release.yml
@@ -97,6 +97,17 @@ jobs:
97
- name: Set build number
98
run: sed -i "s/^build_number = .*/build_number = ${{ github.run_number }}/" perry.toml
99
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
+
111
- name: Publish Linux
112
run: perry publish linux
113
0 commit comments