Skip to content

Commit bf10f7c

Browse files
feat: updated macos notarization
1 parent 08f827a commit bf10f7c

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@ jobs:
8686
- uses: actions/checkout@v3
8787
with:
8888
submodules: "recursive"
89+
90+
- name: Initialize Python 3.10
91+
uses: actions/setup-python@v5
92+
with:
93+
python-version: '3.10'
94+
8995
- name: Install the Apple certificate and provisioning profile
9096
env:
9197
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
@@ -107,6 +113,7 @@ jobs:
107113
env:
108114
APPLE_ID: ${{ secrets.APPLE_ID }}
109115
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
116+
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
110117
run: |
111118
# arch -arm64 ./scripts/build-mac.sh
112119
arch -x86_64 ./scripts/build-mac.sh

cysync/forge.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,10 @@ const config = {
120120

121121
if (process.env.APPLE_ID && process.env.APPLE_ID_PASSWORD) {
122122
config.packagerConfig.osxNotarize = {
123+
tool: 'notarytool',
123124
appleId: process.env.APPLE_ID,
124-
appleIdPassword: process.env.APPLE_ID_PASSWORD
125+
appleIdPassword: process.env.APPLE_ID_PASSWORD,
126+
teamId: process.env.APPLE_TEAM_ID
125127
};
126128
}
127129

cysync/release_notes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"notes": "# v1.2.260\n\n### ⚠️ Notice\n\n- Added Near API deprecation notice\n\n# v1.2.259\n\n### 🚀 Features\n\n- WalletConnect v2 support\n\n# v1.2.10\n\n### 🚀 Features\n\n- Token Support for EVM chains\n\n### 🐛 Bugfixes\n\n- Fixed price update issues\n- Internal transactions for EVM\n- L1 fee for Optimism\n- Fixed AutoLock toggle\n- Removed support for Harmony and Ethereum classic\n\n# v1.1.786\n\n### 🚀 Features\n\n- Support for Arbitrum One and Optimism\n- WalletConnect support\n\n# v1.1.282\n\n### 🐛 Bugfixes\n\n- Bugfixes for Bitcoin legacy\n\n# v1.1.281\n\n### 🚀 Features\n\n- Multi account support is here\n\n### 🌟 Improvements\n\n- Improved auto update\n"
3-
}
3+
}

0 commit comments

Comments
 (0)