From 91cff806bee78bac97fa36d7d897cc3426d6a1f2 Mon Sep 17 00:00:00 2001 From: rustmailer Date: Fri, 18 Jul 2025 18:09:00 +0800 Subject: [PATCH] ci: add release workflow for multi-platform RustMailer binaries --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6b21b4e..73f05ae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -129,7 +129,7 @@ jobs: uses: actions/download-artifact@v4 with: path: artifacts - pattern: rustmailer-* + pattern: "*" merge-multiple: true - name: Flatten artifacts @@ -137,6 +137,9 @@ jobs: mkdir -p artifacts find artifacts -type f -name "*.zip" -exec mv {} artifacts/ \; find artifacts -type f -name "*.tar.gz" -exec mv {} artifacts/ \; + + - name: Debug list files + run: ls -R artifacts - name: Publish GitHub Release uses: softprops/action-gh-release@v2