mirror of
https://github.com/shenxn/protonmail-bridge-docker.git
synced 2026-03-26 21:35:58 +00:00
Fix build job condition to also run on workflow_dispatch
This commit is contained in:
parent
8c5061f641
commit
f9cdac79fe
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user