ci: add macos

This commit is contained in:
2023-12-17 00:59:56 +01:00
parent 81996728cd
commit 13e5ac1951

View File

@@ -22,6 +22,17 @@ jobs:
- run: mv -t /tmp/artifacts dist/*.snap dist/*.AppImage
- store_artifacts:
path: /tmp/artifacts
build_macos:
macos:
xcode: "10.1.0"
steps:
- checkout
- run: yarn
- run: yarn build-electron-mac
- run: mkdir /tmp/artifacts
- run: mv -t /tmp/artifacts dist/*.dmg
- store_artifacts:
path: /tmp/artifacts
workflows:
build:
@@ -34,3 +45,6 @@ workflows:
- build_linux:
requires:
- hold
- build_macos:
requires:
- hold