Don't silently consume Exceptions when uploading assets#57
Don't silently consume Exceptions when uploading assets#57soundasleep wants to merge 1 commit intoBreadMoirai:masterfrom
Conversation
This should resolve BreadMoirai#34
|
So the previous implementation philosophy is that because there's no current implementation to "cancel the release" in this plugin, we just attempt to power through and even if the release is incomplete, keep it as complete as possible. What's the new intended behavior here? the function |
|
Every now and again the upload fails (in my case, because there's already an asset released with the same filename), but the build says it's successful. This can cause issues down the line, e.g. devs getting confused, later actions failing or working with an inconsistent state, all of which are really expensive to debug! If there's an error during release, the dev/build should be notified, or at least have the option to be notified, rather than assuming everything is OK. If you still want to keep this behaviour, what if we could provide a |
|
You can add an exception in the |
|
Hey there! Any movement on this PR? We are also facing the same issue. |
This should resolve #34