-
The Is it possible to configure this action to add that flag to it's Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
LOL I just added it like a few days ago: https://twitter.com/webKnjaZ/status/1275400305581199360. |
Beta Was this translation helpful? Give feedback.
-
https://github.com/pypa/gh-action-pypi-publish#tolerating-release-package-file-duplicates Added 00ef3b8 6 days ago and today I realized that for my use-case I can set up GHA workflow better so that there's no race conditions. FWIW with:
skip_existing: true P.S. I don't recommend running this action from multiple jobs in the same workflow matrix. There's usually a better way to synchronize things like use artifacts upload/download and publish them all together. |
Beta Was this translation helpful? Give feedback.
-
Oops! Looks like I didn't RTFM 🙂 |
Beta Was this translation helpful? Give feedback.
-
@di by the way, feel free to invite me to review GHA workflow PRs if needed. |
Beta Was this translation helpful? Give feedback.
https://github.com/pypa/gh-action-pypi-publish#tolerating-release-package-file-duplicates
Added 00ef3b8 6 days ago and today I realized that for my use-case I can set up GHA workflow better so that there's no race conditions.
FWIW
P.S. I don't recommend running this action from multiple jobs in the same workflow matrix. There's usually a better way to synchronize things like use artifacts upload/download and publish them all together.