Skip to content

Commit b77175d

Browse files
authored
🐛 fix bug where release pipeline is triggered on every branch creation (#336)
1 parent 2488d67 commit b77175d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: release
22
on:
3-
create:
4-
tags: ['^[0-9]+\.[0-9]+\.[0-9]+']
3+
push:
4+
tags: ['[0-9]+\.[0-9]+\.[0-9]+']
55

66
jobs:
77
test:

0 commit comments

Comments
 (0)