-
-
Notifications
You must be signed in to change notification settings - Fork 90
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
Cant generate a single universal build #238
Comments
Did you manage to figure out how to generate this build? I am trying to generate a .dmg file, but only a .app file is being generated. maker.options.json: {
"dmg": {
"window": {
"width": 660,
"height": 400
},
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"category": "public.app-category.social-networking",
"icon": "apps/desktop/src/app/options/resources/icon.icns",
"target": ["zip", "dmg"],
"minimumSystemVersion": "10.10",
"hardenedRuntime": true,
"entitlements": "apps/desktop/entitlements.plist",
"entitlementsInherit": "apps/desktop/entitlementsInherit.plist"
}
} and my commands:
Desktop: OS: Mac Os 14 |
@ja-klaudiusz Did you try using :make instead of package ? |
@andirsun Yes, I tried. But either I didn't notice that it goes into /dist/executables or it wasn't working before the Xcode update... Anyway, after updating Xcode, make: actually works. |
Describe the bug
A clear and concise description of what the bug is.
I am trying to generate a single universal build for my application, I can do it with electron builder configuration but since I am using the nx-electron plugin and
maker.options.json
for some reason two builds are generated:I only need to generate universal architecture because for this reason the compilation process is taking almost double the time signing and notarizing both architectures.
This is my maker.options.json file
And this is the build process.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I dont need to always generate arm64 builds
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: