Skip to content

Commit bb37e3f

Browse files
committed
fix: correct publish workflow branch filter
The workflow_run trigger was watching `master` but the default branch is `main`, so auto-publishing never fired.
1 parent 4b14d3a commit bb37e3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflows: ['CI']
66
types:
77
- completed
8-
branches: [master]
8+
branches: [main]
99
workflow_call:
1010
inputs:
1111
ref:

0 commit comments

Comments
 (0)