mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Multi-arch Windows build in one electron-builder pass, with the website
self-healing across the rename. Asset names go from
`Paseo-Setup-${version}.exe` to `Paseo-Setup-${version}-{x64,arm64}.exe`.
The website now reads the actual installer filename off the latest
GitHub release, so legacy single-arch releases keep rendering a single
"Download" pill while dual-arch releases promote to "Intel / x64" +
"ARM64" automatically. No homepage code change needed when ARM ships.
70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
npmRebuild: false
|
|
appId: sh.paseo.desktop
|
|
productName: Paseo
|
|
executableName: Paseo
|
|
afterPack: ./scripts/after-pack.js
|
|
afterSign: ./scripts/after-sign.js
|
|
directories:
|
|
output: release
|
|
files:
|
|
- dist/**/*
|
|
asarUnpack:
|
|
- dist/daemon/node-entrypoint-runner.js
|
|
- node_modules/@getpaseo/server/dist/server/terminal/shell-integration/**/*
|
|
extraResources:
|
|
- from: ../app/dist
|
|
to: app-dist
|
|
- from: ../../skills
|
|
to: skills
|
|
publish:
|
|
provider: github
|
|
owner: getpaseo
|
|
repo: paseo
|
|
mac:
|
|
artifactName: "Paseo-${version}-${arch}.${ext}"
|
|
category: public.app-category.developer-tools
|
|
icon: assets/icon.icns
|
|
hardenedRuntime: true
|
|
notarize: true
|
|
entitlements: build/entitlements.mac.plist
|
|
entitlementsInherit: build/entitlements.mac.inherit.plist
|
|
extraResources:
|
|
- from: bin/paseo
|
|
to: bin/paseo
|
|
target:
|
|
- dmg
|
|
- zip
|
|
linux:
|
|
category: Development
|
|
icon: assets
|
|
artifactName: "Paseo-${version}-${arch}.${ext}"
|
|
maintainer: "Mohamed Boudra <hello@moboudra.com>"
|
|
vendor: "Paseo"
|
|
extraResources:
|
|
- from: bin/paseo
|
|
to: bin/paseo
|
|
target:
|
|
- AppImage
|
|
- deb
|
|
- rpm
|
|
- tar.gz
|
|
win:
|
|
artifactName: "Paseo-Setup-${version}-${arch}.${ext}"
|
|
icon: assets/icon.ico
|
|
extraResources:
|
|
- from: bin/paseo.cmd
|
|
to: bin/paseo.cmd
|
|
target:
|
|
- target: nsis
|
|
arch:
|
|
- x64
|
|
- arm64
|
|
- target: zip
|
|
arch:
|
|
- x64
|
|
- arm64
|
|
nsis:
|
|
oneClick: false
|
|
perMachine: false
|
|
allowToChangeInstallationDirectory: true
|