From 01be109aeb73c5fff4267145b0143b620824e2e7 Mon Sep 17 00:00:00 2001 From: clementb49 Date: Wed, 5 Jun 2024 00:54:01 +0200 Subject: [PATCH] ci: fix find command --- .github/workflows/ci_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index 193ec72..4d65fd6 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -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: