mirror of
https://github.com/sern-handler/gui
synced 2026-06-19 22:22:14 +00:00
Compare commits
7 Commits
feat/debug
...
ci/macos
| Author | SHA1 | Date | |
|---|---|---|---|
| 1150675570 | |||
| d6b63d86cd | |||
| 0bf6b64dd2 | |||
| c3d059c2e7 | |||
| 8937ad72c8 | |||
| e067061273 | |||
| 13e5ac1951 |
@@ -19,9 +19,20 @@ jobs:
|
|||||||
- run: yarn
|
- run: yarn
|
||||||
- run: yarn build-electron-linux
|
- run: yarn build-electron-linux
|
||||||
- run: mkdir /tmp/artifacts
|
- run: mkdir /tmp/artifacts
|
||||||
- run: mv -t /tmp/artifacts dist/*.snap dist/*.AppImage
|
- run: mv -t /tmp/artifacts dist/*.AppImage
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: /tmp/artifacts
|
path: /tmp/artifacts
|
||||||
|
build_macos:
|
||||||
|
macos:
|
||||||
|
xcode: 14.2.0
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run: yarn
|
||||||
|
- run: yarn build-electron-mac
|
||||||
|
- run: mkdir /tmp/artifacts
|
||||||
|
- run: mv dist/*.dmg /tmp/artifacts
|
||||||
|
- store_artifacts:
|
||||||
|
path: /tmp/artifacts
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
build:
|
build:
|
||||||
@@ -34,3 +45,6 @@ workflows:
|
|||||||
- build_linux:
|
- build_linux:
|
||||||
requires:
|
requires:
|
||||||
- hold
|
- hold
|
||||||
|
- build_macos:
|
||||||
|
requires:
|
||||||
|
- hold
|
||||||
BIN
icons/dmgbg.png
Normal file
BIN
icons/dmgbg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.5 KiB |
28
package.json
28
package.json
@@ -49,6 +49,8 @@
|
|||||||
"vite": "^4.4.0"
|
"vite": "^4.4.0"
|
||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
|
"appId": "dev.sern.gui",
|
||||||
|
"productName": "sern GUI",
|
||||||
"files": [
|
"files": [
|
||||||
"./build/**/*",
|
"./build/**/*",
|
||||||
"./dist/index.js"
|
"./dist/index.js"
|
||||||
@@ -59,6 +61,32 @@
|
|||||||
"win": {
|
"win": {
|
||||||
"icon": "./icons/icon.ico",
|
"icon": "./icons/icon.ico",
|
||||||
"publisherName": "sern"
|
"publisherName": "sern"
|
||||||
|
},
|
||||||
|
"mac": {
|
||||||
|
"icon": "./icons/icon.icns",
|
||||||
|
"category": "public.app-category.developer-tools",
|
||||||
|
"target": [
|
||||||
|
"dmg",
|
||||||
|
"zip"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"dmg": {
|
||||||
|
"background": "./icons/dmgbg.png",
|
||||||
|
"icon": "./icons/icon.icns",
|
||||||
|
"title": "sern GUI",
|
||||||
|
"contents": [
|
||||||
|
{
|
||||||
|
"x": 423,
|
||||||
|
"y": 203,
|
||||||
|
"type": "link",
|
||||||
|
"path": "/Applications"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 117,
|
||||||
|
"y": 203,
|
||||||
|
"type": "file"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user