Skip to content

Commit 8b47bf1

Browse files
committed
fix(ci): fix release tag trigger
Use only push tag pattern 'v*' in the release workflow to avoid the invalid combination of tags and tags-ignore on the same event.
1 parent 8ed238e commit 8b47bf1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- "*"
7-
tags-ignore:
8-
- "passkey-bundler/v*"
6+
- "v*"
97

108
permissions:
119
contents: write

0 commit comments

Comments
 (0)