Skip to content

Commit 935eab7

Browse files
EliEli
authored andcommitted
Refined regex for tags
1 parent fb08fe9 commit 935eab7

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build_sphinx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on:
55
push:
66
branches: ["main", "master"]
77
tags:
8-
- 'v*' # v1, v1.2, v1.2.3, v2025.09.04, etc.
9-
- '[0-9]*' # 1, 1.2, 1.2.3, 2025.09.04, etc.
8+
- 'v[0-9]*.*' # v1, v1.2, v1.2.3, v2025.09.04, etc.
9+
- '[0-9]*\.[0-9]*\.*' # 1, 1.2, 1.2.3, 2025.09.04, etc.
1010
workflow_dispatch:
1111

1212
permissions:

.github/workflows/python-package-conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on:
55
push:
66
branches: ["main", "master"]
77
tags:
8-
- 'v*' # v1, v1.2, v1.2.3, v2025.09.04, etc.
9-
- '[0-9]*' # 1, 1.2, 1.2.3, 2025.09.04, etc.
8+
- 'v[0-9]*.*' # v1, v1.2, v1.2.3, v2025.09.04, etc.
9+
- '[0-9]*\.[0-9]*\.*' # 1, 1.2, 1.2.3, 2025.09.04, etc.
1010
workflow_dispatch:
1111

1212
concurrency:

0 commit comments

Comments
 (0)