* Bump and unpin electron-builder and -updater version forward Fixes #4505 * notarize: true * Remove signingHashAlgorithms from win * Fix signtoolOptions props after migration * Disable branch build * Bump more * Add back CSC_FOR_PULL_REQUEST * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * Another CSC_FOR_PULL_REQUEST * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * Revert force prod changes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
74 lines
1.6 KiB
YAML
74 lines
1.6 KiB
YAML
appId: dev.zoo.modeling-app
|
|
directories:
|
|
output: out
|
|
buildResources: assets
|
|
files:
|
|
- .vite/**
|
|
mac:
|
|
category: public.app-category.developer-tools
|
|
artifactName: "${productName}-${version}-${arch}-${os}.${ext}"
|
|
target:
|
|
- target: dmg
|
|
arch:
|
|
- x64
|
|
- arm64
|
|
- target: zip
|
|
arch:
|
|
- x64
|
|
- arm64
|
|
notarize: true
|
|
fileAssociations:
|
|
- ext: kcl
|
|
name: kcl
|
|
mimeType: text/vnd.zoo.kcl
|
|
description: Zoo KCL File
|
|
role: Editor
|
|
rank: Owner
|
|
win:
|
|
artifactName: "${productName}-${version}-${arch}-${os}.${ext}"
|
|
target:
|
|
- target: nsis
|
|
arch:
|
|
- x64
|
|
- arm64
|
|
signtoolOptions:
|
|
sign: "./scripts/sign-win.js"
|
|
signingHashAlgorithms:
|
|
- sha256
|
|
publisherName: "KittyCAD Inc" # needs to be exactly like on Digicert
|
|
icon: "assets/icon.ico"
|
|
fileAssociations:
|
|
- ext: kcl
|
|
name: kcl
|
|
mimeType: text/vnd.zoo.kcl
|
|
description: Zoo KCL File
|
|
role: Editor
|
|
nsis:
|
|
oneClick: false
|
|
perMachine: true
|
|
allowElevation: true
|
|
installerIcon: "assets/icon.ico"
|
|
include: "./scripts/installer.nsh"
|
|
linux:
|
|
artifactName: "${productName}-${version}-${arch}-${os}.${ext}"
|
|
target:
|
|
- target: appImage
|
|
arch:
|
|
- x64
|
|
- arm64
|
|
fileAssociations:
|
|
- ext: kcl
|
|
name: kcl
|
|
mimeType: text/vnd.zoo.kcl
|
|
description: Zoo KCL File
|
|
role: Editor
|
|
publish:
|
|
- provider: generic
|
|
url: https://dl.zoo.dev/releases/modeling-app
|
|
channel: latest
|
|
releaseInfo:
|
|
releaseNotesFile: release-notes.md
|
|
protocols:
|
|
- name: Zoo Studio
|
|
schemes: ['zoo-studio']
|