From f9cdac79fe37fe8c9aa06e7a66dda1656c6cca7d Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 24 Feb 2026 20:32:08 -0600 Subject: [PATCH] Fix build job condition to also run on workflow_dispatch --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 87bf37a..88373fd 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -74,7 +74,7 @@ jobs: build: runs-on: ubuntu-latest - if: github.event_name == 'push' && github.ref == 'refs/heads/master' + if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/master' strategy: fail-fast: false matrix: