Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

configured to use notarytool but still uses altool #148

Closed
getneil opened this issue Jul 19, 2023 · 2 comments
Closed

configured to use notarytool but still uses altool #148

getneil opened this issue Jul 19, 2023 · 2 comments

Comments

@getneil
Copy link

getneil commented Jul 19, 2023

Hi thank you for building this tool,

Just needed help for this log not sure if it might just be a logging issue.
Screenshot 2023-07-19 at 9 05 57 AM

The run is here: https://github.com/teaxyz/gui/actions/runs/5593877701/jobs/10228077743

the notarization code is in the electron-builder config:

      await notarize({
        tool: "notarytool",
        appBundleId,
        appPath,
        appleId: process.env.APPLE_ID,
        appleIdPassword: process.env.APPLE_APP_SPECIFIC_PASSWORD,
        teamId: process.env.APPLE_TEAM_ID
      });
@sprout2000
Copy link

Hello.
I think if you give up the multi-architecture build in your "electron-builder.config.cjs" the notarytool mode will be correctly applied.

  mac: {
    icon: "./electron/icon.icns",
    target: {
      target: process.env.MAC_BUILD_TARGET || "default",
-     arch: ["x64", "arm64"]
+     arch: ["arm64"]
    },
    minimumSystemVersion: "11"
  },

See #150 for more details.

@MarshallOfSound
Copy link
Member

Closing as duplicate of #150, seems like a bug in builder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants