Skip to content

Commit 27d5c66

Browse files
author
André Böni
committed
+ fix allowed version numbers
1 parent dd80b0d commit 27d5c66

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/publish-to-test-pypi.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ on:
55
push:
66
# Sequence of patterns matched against refs/tags
77
tags:
8-
- '^\d+\.\d+\.\d+(a|b|\.dev|.post|)\d?$' # Push events to matching 1.2.3 1.2.3a1 1.2.3b1 1.2.3.dev1 1.2.3.post1
8+
- '[0-9]+.[0-9]+.[0-9]+'
9+
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
10+
- '[0-9]+.[0-9]+.[0-9]+a[0-9]+'
11+
- '[0-9]+.[0-9]+.[0-9]+b[0-9]+'
12+
- '[0-9]+.[0-9]+.[0-9]+\.dev[0-9]+'
13+
- '[0-9]+.[0-9]+.[0-9]+\.post[0-9]+'
14+
#- '^\d+\.\d+\.\d+(a|b|\.dev|.post|)\d?$' # Push events to matching 1.2.3 1.2.3a1 1.2.3b1 1.2.3.dev1 1.2.3.post1
915

1016
jobs:
1117
build:

0 commit comments

Comments
 (0)