Skip to content

Commit d9879a8

Browse files
codebydivineclaude
andcommitted
fix: Enable CI workflow to run on tag pushes for PyPI publishing
The PyPI publish workflow was failing because it calls the CI workflow, but CI only triggered on branch pushes, not tag pushes. This prevented automatic PyPI publishing when version tags were created. Changes: - Add tags: ['v*'] trigger to CI workflow - Allows PyPI workflow to successfully run CI tests before publishing 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 8a0681b commit d9879a8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: CI
33
on:
44
push:
55
branches: [ main, develop ]
6+
tags: [ 'v*' ]
67
pull_request:
78
branches: [ main, develop ]
89

0 commit comments

Comments
 (0)