Hi,
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.
Documentation link - https://adobedocs.github.io/adobeio-runtime/guides/creating_actions.html
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hello there,
Can you try using wsk for deploying your ZIP?
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
Views
Replies
Total Likes
Hi there,
Seems it does not work on Windows at all: https://github.com/apache/openwhisk-wskdeploy/issues/913
Once I have downloaded the ZIP created by wskdeploy, I found that it added to archive folder path starting from C:/. It did not include all disk content, but included empty folders which break the ZIP structure and action cannot be properly executed:
Suggested workaround to use wsk for ZIP deployment instead works fine for me, but it makes work on actions much harder because each action should be packaged and uploaded separately.
Views
Replies
Total Likes
@RossMyronenko- we recommend to use AIO CLI for developing your application with I/O Runtime. It takes care of building, packaging and deploying your actions, without manually working with zip files.
More details are available at https://github.com/AdobeDocs/project-firefly.
Views
Replies
Total Likes
Hi,
I had the same issue and was fixed added the js file in the manifest file. Below you can see an example:
function: actions/main.js
Views
Replies
Total Likes
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
Views
Replies
Total Likes
Views
Likes
Replies