Skip to content

Commit 87d0af6

Browse files
committed
fix: trim non-essential dirs before arch-docs to reduce zip size
1 parent 3c59168 commit 87d0af6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/arch-docs.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020

21+
- name: Trim non-essential directories
22+
run: |
23+
for dir in test tests __tests__ spec specs benchmarks bench docs documentation \
24+
examples example fixtures migrations assets third_party \
25+
.yarn .cache e2e integration_tests testdata; do
26+
rm -rf "$dir" || true
27+
done
28+
2129
- uses: supermodeltools/arch-docs@main
2230
id: docs
2331
with:

0 commit comments

Comments
 (0)