Skip to content

Commit a9a589c

Browse files
authored
fix(ci): correct cleanup deps - remove all *_test.go files using find (#630)
1 parent 975e837 commit a9a589c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
# remove tests in order to clean dependencies
2828
- name: Remove xxx_test.go files
29-
run: rm -rf *_test.go ./parallel/*_test.go docker-compose.yml img/
29+
run: rm -rf $(find . -type f -name "*_test.go") docker-compose.yml img/
3030

3131
# cleanup test dependencies
3232
- name: Cleanup dependencies

0 commit comments

Comments
 (0)