Skip to content

Commit b0205ee

Browse files
committed
Fix tags glob pattern.
1 parent c0b9cae commit b0205ee

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/split.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ on:
99
- probe
1010
- '\d+\.x'
1111
- '\d+\.\d+\.x'
12-
13-
# see https://github.community/t/how-to-run-github-actions-workflow-only-for-new-tags/16075/10?u=tomasvotruba
1412
tags:
15-
- '^\d+\.\d+\.\d+(|\-(alpha|beta|rc)\d+)$'
13+
- '[0-9]+.[0-9]+.[0-9]+'
14+
- '[0-9]+.[0-9]+.[0-9]+-alpha[0-9]+'
15+
- '[0-9]+.[0-9]+.[0-9]+-beta[0-9]+'
16+
- '[0-9]+.[0-9]+.[0-9]+-rc[0-9]+'
1617

1718
jobs:
1819
packages_split:

0 commit comments

Comments
 (0)