Skip to content

Commit

Permalink
Merge pull request #16 from camptocamp/rm-extra-pypi
Browse files Browse the repository at this point in the history
Fix extra pypi items in notification
  • Loading branch information
sbrunner authored Nov 18, 2024
2 parents 5839a8b + f377d96 commit 8739d36
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 8739d36

Please sign in to comment.