Skip to content

Commit f588e94

Browse files
fix(workflows): simplify tag pattern for PyPI publish trigger
Adjusted the tag pattern in GitHub workflow to trigger on any version tag starting with 'v'. This change allows for more flexible versioning and ensures the publish process initiates for all semantic version tags.
1 parent 7666144 commit f588e94

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test and Publish to PyPI
33
on:
44
push:
55
branches: [main]
6-
tags: ['v*.*.*']
6+
tags: ['v*']
77
pull_request:
88

99
jobs:

0 commit comments

Comments
 (0)