Skip to content

Commit 006282c

Browse files
committed
chore: Fix publish duty
1 parent 8df2c40 commit 006282c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

duties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ def publish(ctx: Context) -> None:
386386
"""
387387
if not Path("dist").exists():
388388
ctx.run("false", title="No distribution files found")
389-
dists = [str(dist) for dist in Path("dist").iterdir() if dist.suffix in (".tar.gz", ".whl")]
389+
dists = [str(dist) for dist in Path("dist").iterdir() if dist.suffix in (".gz", ".whl")]
390390
ctx.run(
391391
tools.twine.upload(*dists, skip_existing=True),
392392
title="Publishing distributions to PyPI",

0 commit comments

Comments
 (0)