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 fb1cf1f commit 3fe5cb4Copy full SHA for 3fe5cb4
.github/workflows/publish.yml
@@ -35,11 +35,11 @@ jobs:
35
if: startsWith(github.ref, 'refs/tags/')
36
runs-on: ubuntu-latest
37
steps:
38
- - name: Check tag conforms
+ - name: "Check tag conforms ^[0-9]+\\.[0-9]+\\.[0-9]+$"
39
run: |
40
trimmed_tag=${GITHUB_REF#refs/tags/}
41
echo trimmed_tag='"'$trimmed_tag'"'
42
- exit [[ "$trimmed_tag" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9]+)?$ ]]
+ exit [[ "$trimmed_tag" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]
43
44
publish-to-pypi:
45
name: >-
0 commit comments