From e94044af0f826d72c682e010b106f5a0573f9f94 Mon Sep 17 00:00:00 2001 From: Leon Mika Date: Sun, 7 Sep 2025 09:57:07 +1000 Subject: [PATCH] Added zip step --- .forgejo/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 247703b..045e812 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -24,9 +24,13 @@ jobs: - name: Build run: | npm install - wails build -clean -platform darwin/arm64 + wails build -clean -platform darwin/arm64 -o Dequoter.app + - name: Bundle + run: | + cd build/bin/ + zip -r dequoter-darwin-arm64.zip Dequoter.app - name: Upload build artifacts uses: actions/upload-artifact@v3 with: name: dequoter-darwin-arm64 - path: build/bin/ + path: build/bin/dequoter-darwin-arm64.zip