We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81802fa commit d39a71fCopy full SHA for d39a71f
.github/workflows/check.yml
@@ -202,9 +202,7 @@ jobs:
202
if: ${{ startsWith(github.head_ref, 'chore/prepare-release-') }}
203
run: |
204
cd clients/algoliasearch-client-javascript/packages
205
- ls | grep -v -E "(logger-console|client-common|requester-*|algoliasearch)" | xargs rm -rf
206
- cd algoliasearch
207
- ls | grep -v -E "__tests__" | xargs rm -rf
+ find . -mindepth 1 -maxdepth 1 ! -name 'requester-*' ! -name 'logger-*' ! -name 'client-common' -type d -exec rm -rf {}/src {}/model {}/dist {}/builds \;
208
209
- name: Setup
210
uses: ./.github/actions/setup
0 commit comments