Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #2083 +/- ##
=======================================
Coverage 52% 52%
=======================================
Files 61 61
Lines 7076 7076
=======================================
Hits 3657 3657
Misses 3419 3419 🚀 New features to boost your workflow:
|
SkalskiP
approved these changes
Jan 19, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request enhances debugging capabilities in the GitHub Actions workflows that publish Python packages to PyPI and TestPyPI. The changes add artifact listing steps to help troubleshoot build output in CI logs.
Changes:
- Added explicit
path: dist/parameter to artifact download steps for clarity - Added a new step to list distribution artifacts after download for improved visibility in CI logs
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/publish-testpypi.yml |
Added artifact path specification and listing step for TestPyPI workflow |
.github/workflows/publish-release.yml |
Added artifact path specification and listing step for release workflow |
.github/workflows/publish-pre-release.yml |
Added artifact path specification and listing step for pre-release workflow |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the GitHub Actions workflows for publishing to PyPI and TestPyPI. The main change is the addition of a step to list the distribution artifacts after downloading them, which helps with debugging and verifying the build output in CI logs.
Workflow improvements:
dist/directory after downloading build artifacts in thepublish-release.yml,publish-pre-release.yml, andpublish-testpypi.ymlworkflows for improved visibility and troubleshooting. [1] [2] [3]path: dist/option when downloading thedistartifact in all three workflows to ensure artifacts are placed in the correct directory. [1] [2] [3]