We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd80b0d commit 27d5c66Copy full SHA for 27d5c66
.github/workflows/publish-to-test-pypi.yml
@@ -5,7 +5,13 @@ on:
5
push:
6
# Sequence of patterns matched against refs/tags
7
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
+ - '[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
15
16
jobs:
17
build:
0 commit comments