Skip to content

Commit a9787dd

Browse files
committed
build: allow wildcard in tag pattern for publish workflow
The tag pattern in the publish workflow was updated to include a wildcard (*) at the end. This allows matching tags like "v1.2.3-alpha" or "v1.2.3-beta" in addition to standard semantic versioning tags. Affected file: - .github/workflows/publish.yml
1 parent 1cfb383 commit a9787dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: publish-on-tag
33
on:
44
push:
55
tags:
6-
- "v[0-9]+.[0-9]+.[0-9]+"
6+
- "v[0-9]+.[0-9]+.[0-9]+*"
77

88
jobs:
99
pypi-publish-on-tag:

0 commit comments

Comments
 (0)