Skip to content

Commit 8b00641

Browse files
committed
Workaround wheel+sdist empty bug.
1 parent bee6a66 commit 8b00641

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/makeapp/helpers/dist.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ def upload(cls):
3232
if not env_vars:
3333
LOG.warning(f'PyPI credentials not found in {pypirc_file}')
3434

35-
cls.run_command_uv('build')
35+
cls.run_command_uv('build --wheel')
36+
cls.run_command_uv('build --sdist')
3637
cls.run_command_uv('publish', env=env_vars)

0 commit comments

Comments
 (0)