From 4fa816801c283a56fabf3afff735c2d1967cdbb6 Mon Sep 17 00:00:00 2001 From: dinex-dev Date: Mon, 8 Jun 2026 17:32:50 +0530 Subject: [PATCH 1/2] chore(dev): point workflow at dev repo's MAC_CERTS + allow dispatch from dev branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two minimal edits on the prod workflow we just synced over: 1. mac_certs / mac_certs_password now read from secrets.MAC_CERTS / MAC_CERTS_PASSWORD (the dev repo's known-good pair, last refreshed 2025-12-07) instead of secrets.bstack_mac_certs / bstack_mac_certs_password (which only exist on prod, and the prod copies are the broken pair that produced the MAC verification / notarize failures we're debugging). 2. Branch guard now also allows refs/heads/dev so workflow_dispatch from the dev branch actually fires steps instead of skipping silently. This is a dev-only adjustment — the prod workflow stays as-is. Iteration playground only; do not merge upstream. --- .github/workflows/release_desktop_app.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_desktop_app.yml b/.github/workflows/release_desktop_app.yml index 51f37b6..72c4166 100644 --- a/.github/workflows/release_desktop_app.yml +++ b/.github/workflows/release_desktop_app.yml @@ -42,7 +42,7 @@ jobs: APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }} - if: github.ref == 'refs/heads/master'|| github.ref == 'refs/heads/production' + if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/production' || github.ref == 'refs/heads/dev' runs-on: ${{ github.event.inputs.build_type }} steps: @@ -148,8 +148,8 @@ jobs: github_token: ${{ secrets.publish_token }} package_root: "." - mac_certs: ${{ secrets.bstack_mac_certs }} - mac_certs_password: ${{ secrets.bstack_mac_certs_password }} + mac_certs: ${{ secrets.MAC_CERTS }} + mac_certs_password: ${{ secrets.MAC_CERTS_PASSWORD }} # windows_certs / windows_certs_password intentionally removed. # Windows codesigning now happens inside electron-builder via the From fbe0ad6a663a2d75190c46d53c2f3fedf7171419 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 12:04:02 +0000 Subject: [PATCH 2/2] build(deps): bump ws from 8.18.0 to 8.20.1 Bumps [ws](https://github.com/websockets/ws) from 8.18.0 to 8.20.1. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/8.18.0...8.20.1) --- updated-dependencies: - dependency-name: ws dependency-version: 8.20.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- package-lock.json | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index bb24627..811f2b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -68,7 +68,7 @@ "ua-parser-js": "^1.0.2", "util": "^0.12.4", "uuid": "^9.0.1", - "ws": "^8.2.3", + "ws": "^8.20.1", "yargs": "^17.2.1" }, "devDependencies": { @@ -18935,9 +18935,9 @@ } }, "node_modules/ws": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", - "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.1.tgz", + "integrity": "sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==", "engines": { "node": ">=10.0.0" }, @@ -32211,9 +32211,9 @@ } }, "ws": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", - "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.1.tgz", + "integrity": "sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==", "requires": {} }, "xml-name-validator": { diff --git a/package.json b/package.json index 74eaf12..746c180 100644 --- a/package.json +++ b/package.json @@ -333,7 +333,7 @@ "ua-parser-js": "^1.0.2", "util": "^0.12.4", "uuid": "^9.0.1", - "ws": "^8.2.3", + "ws": "^8.20.1", "yargs": "^17.2.1" }, "devEngines": {