Skip to content

Commit 32c5d46

Browse files
committed
chore: adjust release creation condition to allow manual workflow dispatch
1 parent 2e17be3 commit 32c5d46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/precompile-php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ jobs:
939939
create-release:
940940
needs: [check-for-updates, build-matrix, get-php-versions]
941941
runs-on: ubuntu-latest
942-
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') && (needs.check-for-updates.outputs.rebuild_needed == 'true' || github.event.inputs.force_rebuild == 'true')
942+
if: ((github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch') && (needs.check-for-updates.outputs.rebuild_needed == 'true' || github.event.inputs.force_rebuild == 'true')
943943

944944
steps:
945945
- name: Checkout repository

0 commit comments

Comments
 (0)