From 5e2636eb153f98d2f9c3629800f977a9a29488ea Mon Sep 17 00:00:00 2001 From: filip mertens Date: Thu, 29 Feb 2024 15:22:33 +0100 Subject: [PATCH] arm64 --- .circleci/config.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index b0379b9f05..62f8191d98 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -317,11 +317,20 @@ jobs: xcrun notarytool submit 'release/Remix IDE-0.0.11-Alpha.dmg' \ --keychain-profile "notarytool-password" \ --wait + - run: + name: Notarize the app + command: | + cd apps/remixdesktop + # Assuming your app is packaged as a dmg or zip for notarization + xcrun notarytool submit 'release/Remix IDE-0.0.11-Alpha.Arm64.dmg' \ + --keychain-profile "notarytool-password" \ + --wait - run: name: Staple the app command: | cd apps/remixdesktop xcrun stapler staple 'release/Remix IDE-0.0.11-Alpha.dmg' + xcrun stapler staple 'release/Remix IDE-0.0.11-Alpha.Arm64.dmg' - store_artifacts: path: apps/remixdesktop/release/ destination: remixdesktop-mac