I'm following the documentation for creation the web actions. I'm able to successfully deploy using wskdeploy, but when i'm invoking the action, it throws the following error. Any input on what may be doing wrong?
Initialization has failed due to: There was an error uncompressing the action archive.
We've updated the docs to highlight that if you have dependencies, then you have to point to the folder where the action is defined and the action has to be defined in a file called index.js
There is another way of deploying a ZIP action using the wsk command. You miss the manifest.yaml file flexibility with this mode; you can’t define multiple actions/packages at the same time. The ZIP file has to have in the root the package.json file. wsk action create my-action --kind nodejs:10 zip-file.zip