diff --git a/.circleci/config.yml b/.circleci/config.yml index c34a711..2fe9fb4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 \ No newline at end of file