Skip to content

Commit 5f8f476

Browse files
committed
ci: broaden numeric tag matching in workflow triggers.
1 parent d3639ec commit 5f8f476

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
push:
1010
tags:
1111
- 'v*'
12-
- '[0-9]+.[0-9]+.[0-9]+'
12+
- '[0-9]*'
1313
workflow_dispatch:
1414

1515
env:

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
tags:
66
- 'v*'
7-
- '[0-9]+.[0-9]+.[0-9]+'
7+
- '[0-9]*'
88
workflow_dispatch:
99

1010
permissions:

.github/workflows/linux-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
tags:
66
- 'v*'
7-
- '[0-9]+.[0-9]+.[0-9]+'
7+
- '[0-9]*'
88
workflow_dispatch:
99

1010
permissions:

.github/workflows/windows-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
tags:
66
- 'v*'
7-
- '[0-9]+.[0-9]+.[0-9]+'
7+
- '[0-9]*'
88
workflow_dispatch:
99

1010
permissions:

0 commit comments

Comments
 (0)