From e33cf2f33fb9bfa619f4c2084e0bbab46cef1793 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Tue, 10 Mar 2026 18:56:52 -0700 Subject: [PATCH] Feat: Place extension zips in dist/ --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c4f1981..9cc44d6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,11 @@ jobs: - run: bun run build + - name: Zip extensions + run: | + cd dist/chrome && zip -r ../inzerosight-chrome.zip . && cd ../.. + cd dist/firefox && zip -r ../inzerosight-firefox.zip . && cd ../.. + - name: Commit and push dist run: | git config user.name "github-actions[bot]"