From 61eade9c7ae3100945e08cba16a248020a0ec1ca Mon Sep 17 00:00:00 2001 From: Tim Bradgate Date: Sat, 24 Jan 2026 22:52:21 +0000 Subject: [PATCH] Fix macOS Electron artifact upload path The glob pattern `electron/out/make/*.zip` did not match the actual output path from Electron Forge, which places macOS builds at `electron/out/make/zip/darwin/{arch}/*.zip`. Changed to recursive glob `**/*.zip` to find zip files in subdirectories. This fixes the missing macOS Electron build in releases. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/build-electron.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-electron.yml b/.github/workflows/build-electron.yml index 87489768..1ea19c9f 100644 --- a/.github/workflows/build-electron.yml +++ b/.github/workflows/build-electron.yml @@ -63,7 +63,7 @@ jobs: - os: macos-latest platform: macos artifact_patterns: | - electron/out/make/*.zip + electron/out/make/**/*.zip runs-on: ${{ matrix.os }} steps: - name: Checkout repository