Fix build job condition to also run on workflow_dispatch

This commit is contained in:
Dan Williams 2026-02-24 20:32:08 -06:00
parent 8c5061f641
commit f9cdac79fe

View File

@ -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: