Skip to content

Commit bfbd5e8

Browse files
authored
chore: Fix release CI regex (#73)
I found out that the `tags` field in the Github Workflow specification is not a regex, but their own pattern matcher syntax. This caused our release to fail, so I'm fixing it so we can release.
1 parent 45b1375 commit bfbd5e8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Chore
2+
body: Fix release CI tags pattern
3+
time: 2025-03-27T10:12:26.06731+01:00

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_dispatch:
44
push:
55
tags:
6-
- '[0-9]+(\.[0-9]+)*([-\.]\S+)?'
6+
- '[0-9]+.[0-9]+.[0-9]+-[a-zA-Z]*'
77

88
jobs:
99
pypi-publish:

0 commit comments

Comments
 (0)