From fc754584537ea9189725e936fe23bb129cd9a73d Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 3 Apr 2022 20:21:14 -0700 Subject: [PATCH] Build exe.macos as well as the app bundle, and upload them both --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 40288c2d..2243fc04 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -200,13 +200,18 @@ jobs: name: Build OnionShare command: | cd ~/project/desktop + poetry run python ./setup-freeze.py build poetry run python ./setup-freeze.py bdist_mac poetry run python ./scripts/build-macos.py cleanup-build - run: name: Compress - command: zip -r ~/onionshare-macos.zip ~/project/desktop/build/OnionShare.app + command: | + zip -r ~/onionshare-macos.zip ~/project/desktop/build/exe.macosx-10.9-x86_64-3.9 + zip -r ~/onionshare-app-macos.zip ~/project/desktop/build/OnionShare.app - store_artifacts: path: ~/onionshare-macos.zip + - store_artifacts: + path: ~/onionshare-app-macos.zip build-snapcraft: docker: