Skip to content

Commit 87c6bcf

Browse files
authored
fix: correct publish workflow branch filter (#134)
The workflow_run trigger was watching `master` but the default branch is `main`, so auto-publishing never fired.
1 parent 4b14d3a commit 87c6bcf

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)