mirror of
https://github.com/pypa/gh-action-pypi-publish
synced 2024-12-03 21:52:27 +08:00
attestations: collect *.zip sdists as well
Signed-off-by: William Woodruff <william@trailofbits.com>
This commit is contained in:
parent
a8b73a6d88
commit
fec2f0c0ce
@ -54,6 +54,7 @@ def debug(msg: str):
|
||||
def collect_dists(packages_dir: Path) -> list[Path]:
|
||||
# Collect all sdists and wheels.
|
||||
dist_paths = [sdist.resolve() for sdist in packages_dir.glob('*.tar.gz')]
|
||||
dist_paths.extend(sdist.resolve() for sdist in packages_dir.glob('*.zip'))
|
||||
dist_paths.extend(whl.resolve() for whl in packages_dir.glob('*.whl'))
|
||||
|
||||
# Make sure everything that looks like a dist actually is one.
|
||||
|
Loading…
Reference in New Issue
Block a user