From c0d55063f0bbff1e0e515cd1705a8ae79cfa7d4f Mon Sep 17 00:00:00 2001 From: johannesjo Date: Sun, 9 Nov 2025 20:53:51 +0100 Subject: [PATCH] build: attempt to fix mas 6 add potentially missing global cert --- .github/workflows/build-publish-to-mac-store-on-release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-publish-to-mac-store-on-release.yml b/.github/workflows/build-publish-to-mac-store-on-release.yml index 41dffd757..988b3bbe6 100644 --- a/.github/workflows/build-publish-to-mac-store-on-release.yml +++ b/.github/workflows/build-publish-to-mac-store-on-release.yml @@ -28,6 +28,11 @@ jobs: git config --global url."https://github.com/".insteadOf ssh://git@github.com/ + - name: Install Apple WWDR intermediate certificate + run: | + curl -fsSL https://www.apple.com/certificateauthority/AppleWWDRCAG4.cer -o /tmp/AppleWWDRCAG4.cer + sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain /tmp/AppleWWDRCAG4.cer + - name: Get npm cache directory id: npm-cache-dir run: |