Skip to content

Fix upload_all release publish failure caused by duplicate macOS wheel artifacts#26

Closed
Copilot wants to merge 2 commits into
mainfrom
copilot/fix-upload-all-job
Closed

Fix upload_all release publish failure caused by duplicate macOS wheel artifacts#26
Copilot wants to merge 2 commits into
mainfrom
copilot/fix-upload-all-job

Conversation

Copilot AI commented Jun 11, 2026

Copy link
Copy Markdown

upload_all was failing during Twine validation with zipfile.BadZipFile after artifact download/merge. The failure came from overlapping wheel outputs between macos-latest and macos-14 in the wheel build matrix.

  • Workflow matrix correction

    • Updated .github/workflows/python-package.yml to use explicit, non-overlapping macOS runners:
      • from: macos-latest, macos-14, ubuntu-latest
      • to: macos-13, macos-14, ubuntu-latest
    • This prevents duplicate wheel filenames from being merged into dist/ in upload_all.
  • Impact on upload_all

    • Keeps artifact download pattern/merge behavior unchanged.
    • Removes the source of wheel file collisions that led to corrupted wheel contents during publish checks.
strategy:
  matrix:
    platform: [macos-13, macos-14, ubuntu-latest]

Copilot AI changed the title [WIP] Fix failing GitHub Actions job upload_all Fix upload_all release publish failure caused by duplicate macOS wheel artifacts Jun 11, 2026
Copilot AI requested a review from robertkhu June 11, 2026 20:07
@robertkhu robertkhu marked this pull request as ready for review June 11, 2026 20:10
@codecov

codecov Bot commented Jun 11, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 43.48%. Comparing base (dd10b31) to head (3a4c832).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #26   +/-   ##
=======================================
  Coverage   43.48%   43.48%           
=======================================
  Files          20       20           
  Lines        3530     3530           
=======================================
  Hits         1535     1535           
  Misses       1995     1995           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@robertkhu robertkhu closed this Jun 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants