Skip to content

Commit

Permalink
Fix extra pypi items in notification
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Nov 18, 2024
1 parent 5839a8b commit f377d96
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tag_publish/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ def _handle_pypi_publish(
print(f"{'Publishing' if publish else 'Checking'} '{folder}' to pypi, skipping (dry run)")
else:
success &= tag_publish.publish.pip(package, version, version_type, publish, github)
published_payload.append({"type": "pypi", "folder": folder})
if publish:
published_payload.append({"type": "pypi", "folder": folder})
return success


Expand Down

0 comments on commit f377d96

Please sign in to comment.