From ad807495456286f46b06de113eb8883f1832b4ea Mon Sep 17 00:00:00 2001 From: rdeiser Date: Tue, 25 Aug 2026 10:35:42 -0500 Subject: [PATCH] ci(zip.yml): update so that the github action will run when sandbox branch is pushed and produciton branch is pulled --- .github/workflows/zip.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/zip.yml b/.github/workflows/zip.yml index fd07fdaf..41e9191a 100644 --- a/.github/workflows/zip.yml +++ b/.github/workflows/zip.yml @@ -1,7 +1,11 @@ name: Build and Collect ZIP on: push: + branches: + - sandbox pull_request: + branches: + - production workflow_dispatch: jobs: build: @@ -20,7 +24,7 @@ jobs: - name: Install dependencies run: npm ci - + - name: Build run: npm run build