Skip to content

Commit

Permalink
feat: updated macos notarization
Browse files Browse the repository at this point in the history
  • Loading branch information
irshadCypherock committed Dec 26, 2023
1 parent 08f827a commit 168d8c3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: "recursive"

- name: Initialize Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10

- name: Install the Apple certificate and provisioning profile
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
Expand All @@ -107,6 +113,7 @@ jobs:
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: |
# arch -arm64 ./scripts/build-mac.sh
arch -x86_64 ./scripts/build-mac.sh
Expand Down
4 changes: 3 additions & 1 deletion cysync/forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,10 @@ const config = {

if (process.env.APPLE_ID && process.env.APPLE_ID_PASSWORD) {
config.packagerConfig.osxNotarize = {
tool: 'notarytool',
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASSWORD
appleIdPassword: process.env.APPLE_ID_PASSWORD,
teamId: process.env.APPLE_TEAM_ID
};
}

Expand Down
2 changes: 1 addition & 1 deletion cysync/release_notes.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"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"
}
}

0 comments on commit 168d8c3

Please sign in to comment.