From d9c4afa793553ac61290c8ac7baad55e32b6ab32 Mon Sep 17 00:00:00 2001 From: Ruokun Niu Date: Fri, 31 Jul 2026 10:37:48 -0700 Subject: [PATCH] Update the deploy step to trigger when using workflow_dispatch Signed-off-by: Ruokun Niu --- .github/workflows/website.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/website.yaml b/.github/workflows/website.yaml index cc06213a..29e6662b 100644 --- a/.github/workflows/website.yaml +++ b/.github/workflows/website.yaml @@ -72,7 +72,7 @@ jobs: deploy: name: Deploy to GitHub Pages - if: github.event_name == 'push' && github.ref == 'refs/heads/main' + if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/main' needs: build runs-on: ubuntu-latest steps: