From fd10cb0cf19b886d1362b1ffe5787cac25085c79 Mon Sep 17 00:00:00 2001 From: kilyabin <65072190+kilyabin@users.noreply.github.com> Date: Tue, 10 Mar 2026 01:24:22 +0400 Subject: [PATCH] fix: use merge-multiple for artifact download --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5631f31..a7da405 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -74,16 +74,14 @@ jobs: uses: actions/download-artifact@v4 with: path: artifacts + merge-multiple: true - name: Prepare release assets shell: bash run: | cd artifacts - for dir in */; do - cp "$dir"/* . 2>/dev/null || true - done - rm -rf */ ls -la + chmod +x * 2>/dev/null || true - name: Create Release uses: softprops/action-gh-release@v1