From 86cd889b2e2c40fc5c0d8550b9216cb905e0e0a8 Mon Sep 17 00:00:00 2001 From: denis0001-dev Date: Mon, 14 Sep 2026 14:30:14 +0300 Subject: [PATCH] Fix publish artifact download pattern (was not in prior commit). Use a single glob for platform artifacts and a separate step for Android; multiline pattern values are not supported. Co-authored-by: Cursor --- .github/workflows/release.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c39c616..066ca42 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -441,18 +441,22 @@ jobs: sparse-checkout-cone-mode: false - uses: actions/download-artifact@v5 with: - pattern: | - windows-* - macos-* - linux-* - android + pattern: "{windows,macos,linux}-*" merge-multiple: true path: artifacts + - uses: actions/download-artifact@v5 + with: + name: android + path: artifacts - name: Collect release assets env: LABEL: ${{ needs.resolve-version.outputs.release_label }} run: | set -euo pipefail + if [[ ! -d artifacts ]]; then + echo "No artifacts were downloaded" >&2 + exit 1 + fi mkdir -p release-assets pick_one() {