From b0156cba4a46a072d4ec6dac2c2bd62cfa626e5d Mon Sep 17 00:00:00 2001 From: LukeGus Date: Sun, 19 Oct 2025 17:27:19 -0500 Subject: [PATCH] fix: Improve macOS support --- .github/workflows/electron-build.yml | 2 ++ electron-builder.json | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/electron-build.yml b/.github/workflows/electron-build.yml index 6043fd4e..12d98810 100644 --- a/.github/workflows/electron-build.yml +++ b/.github/workflows/electron-build.yml @@ -156,6 +156,8 @@ jobs: - name: Build macOS App Store Package if: steps.check_certs.outputs.has_certs == 'true' + env: + BUILD_NUMBER: ${{ github.run_number }} run: npm run build:mac - name: List release directory diff --git a/electron-builder.json b/electron-builder.json index 69ea20c9..40066154 100644 --- a/electron-builder.json +++ b/electron-builder.json @@ -77,6 +77,7 @@ "minimumSystemVersion": "10.15" }, "mas": { + "buildVersion": "${env.BUILD_NUMBER}", "provisioningProfile": "build/Termix_Mac_App_Store.provisionprofile", "entitlements": "build/entitlements.mas.plist", "entitlementsInherit": "build/entitlements.mas.inherit.plist",