Skip to content

Commit

Permalink
ci: fix find command
Browse files Browse the repository at this point in the history
  • Loading branch information
clementb49 committed Jun 4, 2024
1 parent 939f207 commit 01be109
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
path: installer
- name: move installer
run: |
find "./installer" -type f -name "*.exe" -exec mv {} "./installer"
find "./installer" -mindepth 1 -type d -exec rmdir {} +
find "./installer" -type f -name "*.exe" -exec mv {} "./installer" \;
find "./installer" -mindepth 1 -type d -exec rmdir {} \;
- name: create release
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit 01be109

Please sign in to comment.