Skip to content

Commit be38020

Browse files
codebydivineclaude
andcommitted
fix: Make CI workflow reusable for PyPI publishing
The PyPI publish workflow was failing because it calls the CI workflow with 'uses:', but CI workflow was missing the required 'workflow_call' trigger that makes it reusable. Changes: - Add workflow_call trigger to CI workflow - Allows PyPI workflow to successfully call CI as a reusable workflow 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent e473b86 commit be38020

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
@@ -6,6 +6,7 @@ on:
66
tags: [ 'v*' ]
77
pull_request:
88
branches: [ main, develop ]
9+
workflow_call:
910

1011
jobs:
1112
test:

0 commit comments

Comments
 (0)