From 197ee4441f760b9ea814d00ba352b896325a1d7c Mon Sep 17 00:00:00 2001 From: ThisIsDara <1380katana@gmail.com> Date: Fri, 8 May 2026 07:46:32 +0330 Subject: [PATCH] fix: workflow artifact download path --- .github/workflows/build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cd82c2f..c0f4d8e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,12 +72,17 @@ jobs: - name: Download all artifacts uses: actions/download-artifact@v4 with: - path: . + path: ./binaries + pattern: mhr-cfw-go-* + merge-multiple: true + + - name: List binaries + run: ls -la ./binaries - name: Release uses: softprops/action-gh-release@v2 with: - files: mhr-cfw-go-* + files: ./binaries/* body: | ## Bug Fixes - Fixed Telegram API connectivity issues