Skip to content

Commit 467336f

Browse files
committed
ci: allow notarization to run on workflow_dispatch
1 parent 1261176 commit 467336f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/macos-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
sign-and-notarize:
128128
runs-on: macos-latest
129129
needs: create-universal-binary
130-
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
130+
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/main'
131131

132132
steps:
133133
- name: Checkout code

0 commit comments

Comments
 (0)