Skip to content

Commit

Permalink
Fix deleting files
Browse files Browse the repository at this point in the history
  • Loading branch information
Bellangelo committed Sep 27, 2024
1 parent 5b5c3d0 commit 07edb0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/downgrade-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
- uses: ./.github/actions/downgrade

# clear the dev files
- run: find . ! -name 'bin' ! -name 'src' ! -name 'vendor' ! -name 'composer.json' ! -name 'composer.lock' ! -name 'README.md' -mindepth 1 -delete
- run: find . -type f ! -name 'bin' ! -name 'src' ! -name 'vendor' ! -name 'composer.json' ! -name 'composer.lock' ! -name 'README.md' ! -name 'vendor' -mindepth 1 -delete
- run: find . -type d -empty -delete

# setup git user
- run: |
Expand Down

0 comments on commit 07edb0f

Please sign in to comment.