-
When I upload a package manually using When I use
Complete repository where I got this problem: https://github.com/selivan/kibana-backup-simple/ |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Never mind, this was because of using python 3.5. With 3.8 my manual action works fine with markdown, your probably also will work fine. |
Beta Was this translation helpful? Give feedback.
-
This action only uploads what you've built before calling it. It doesn't do anything to the metadata. |
Beta Was this translation helpful? Give feedback.
-
@webknjaz That is all true, but for |
Beta Was this translation helpful? Give feedback.
This action only uploads what you've built before calling it. It doesn't do anything to the metadata.
Based on the symptoms you described, it's not related to the Python version either. Besides, this action runs in an isolated container so whatever Python you use in your workflow does not influence the Python version in our container.
This happens when you use [outdated setuptools]https://setuptools.readthedocs.io/en/latest/history.html#v36-4-0) that does not support the Markdown long description MIME type.
Older Pythons ship older setuptools by default but that does not prevent you from updating setuptools.
So the right answer is: update setuptools to a version higher than 36.4.0. Whethe…