Skip to content

Commit 8cbf851

Browse files
authored
ci: upload check wheels as artifacts (#662)
Follow-up to #661 — makes the wheels built by the PR check downloadable for local inspection. 7-day retention.
1 parent a6e4e58 commit 8cbf851

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/build-wheel-check.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@ jobs:
8383
python -c "import claude_agent_sdk; print('import ok')"
8484
python -c "import claude_agent_sdk, pathlib, platform; cli_name = 'claude.exe' if platform.system() == 'Windows' else 'claude'; p = pathlib.Path(claude_agent_sdk.__file__).parent / '_bundled' / cli_name; assert p.exists() and p.is_file(), f'bundled CLI missing after install: {p}'; print('bundled CLI at', p)"
8585
86+
- uses: actions/upload-artifact@v4
87+
with:
88+
name: wheel-check-${{ matrix.expected_tag }}
89+
path: dist/*.whl
90+
retention-days: 7
91+
8692
verify-matrix-sync:
8793
# Guard against the build matrix here drifting from the publish matrix.
8894
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)