From 88e9ac44e92fbe35178486ed440dae4b7a99e5ef Mon Sep 17 00:00:00 2001 From: "dries.k" Date: Thu, 21 Jul 2022 15:44:34 +0200 Subject: [PATCH] create a .zip for the app bundle --- .github/workflows/develop.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 11d8e83..d0ae7d4 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -69,9 +69,12 @@ jobs: - name: Build run: | make build-macos - cp dist/Gotify-Tray.app Gotify-Tray.app + cd dist + zip -r Gotify-Tray.zip Gotify-Tray.app + cd .. + cp dist/Gotify-Tray.zip Gotify-Tray.zip - name: Upload artifact uses: actions/upload-artifact@v2 with: - name: Gotify-Tray.app - path: Gotify-Tray.app + name: Gotify-Tray.zip + path: Gotify-Tray.zip