Skip to content

Commit 593874e

Browse files
authored
fix: release workflow 支持大写 V 开头的 tag (#6)
tag 匹配模式 'v*' 区分大小写,而 V0.0.14/V0.0.15 使用大写 V, 导致 workflow 未被触发。现在同时匹配 'v*' 和 'V*'。 Co-authored-by: creeperCN <creeperCN@users.noreply.github.com>
1 parent b04d722 commit 593874e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- "v*"
7+
- "V*"
78

89
permissions:
910
contents: write

0 commit comments

Comments
 (0)