From e523a7480bf98b06afecd6defa999210cacb792b Mon Sep 17 00:00:00 2001 From: Liam Pietralla Date: Tue, 11 Nov 2025 22:19:46 +0000 Subject: [PATCH] allow workflow dispatch to trigger release --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c759021..04ce19c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: run: pnpm run build publish: - if: github.ref == 'refs/heads/main' && github.event_name == 'push' + if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') name: Publish App runs-on: ubuntu-latest needs: build