build: fix mac store release

This commit is contained in:
Johannes Millan 2020-10-04 14:50:14 +02:00
parent caa77e93d1
commit 3433d84c2a
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
appId: com.super-productivity.app
#afterSign: build/scripts/notarize.js
afterSign: electron-builder-notarize
files:
- electron/**/*
- "!electron/**/*.ts"

View file

@ -54,9 +54,9 @@
"dist:win:only": "electron-builder --win",
"dist:win:appx": "yarn buildAllElectron:prod && electron-builder --win --config=build/electron-builder.appx.yaml",
"dist:win:store": "git pull && yarn && copy electron-builder.win-store.yaml electron-builder.yaml && yarn dist:win && git checkout electron-builder.yaml || git checkout electron-builder.yaml",
"dist:mac:dl": "cp dl.provisionprofile embedded.provisionprofile && electron-builder --mac",
"dist:mac:mas": "cp mas.provisionprofile embedded.provisionprofile; electron-builder --mac mas --config=build/electron-builder.mas.yaml",
"dist:mac:mas:dev": "cp mas-dev.provisionprofile embedded.provisionprofile; electron-builder --mac mas-dev --config=build/electron-builder.mas-dev.yaml",
"dist:mac:dl": "cp tools/mac-profiles/dl.provisionprofile embedded.provisionprofile && electron-builder --mac",
"dist:mac:mas": "cp tools/mac-profiles/mas.provisionprofile embedded.provisionprofile; electron-builder --mac mas --config=build/electron-builder.mas.yaml",
"dist:mac:mas:dev": "cp tools/mac-profiles/mas-dev.provisionprofile embedded.provisionprofile; electron-builder --mac mas-dev --config=build/electron-builder.mas-dev.yaml",
"release": "yarn release.changelog && yarn dist",
"release.changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"version": "yarn release.changelog && git add -A",