We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a893ef commit a07c603Copy full SHA for a07c603
.github/workflows/Compile AHK 2.0 and Release.yml
@@ -3,7 +3,9 @@ name: Compile AHK 2.0 and Release
3
on:
4
push:
5
tags:
6
- - "v**"
+ - "v[0-9]*" # 匹配 v1, v2.3, v10 等
7
+ - "v[0-9]*.[0-9]*" # 匹配 v1.0, v2.3.4 等
8
+ - "v[0-9]*-*" # 匹配带预发布标识的标签
9
10
jobs:
11
build_and_release:
0 commit comments