Hello, I'm trying to deploy a custom Skill with the ASK CLI tool. I've been using this manifest for a while and it's stopped working. I've tried to edit the JSON to reflect even the demos, with no results. Can anyone help?
The Error I'm getting is
[Error]: CLI doesn't support sourceDir deploy when the endpoint of custom/default is not Lambda.
My Skill Manifest Includes the following:
"apis": { "custom": { "endpoint": { "sourceDir": "lambda/custom", "uri": "<<NAME HERE>>" }, "interfaces": [ { "type": "RENDER_TEMPLATE" } ] } },
and my .ask/config file contains this:
{ "deploy_settings": { "default": { "skill_id": "", "resources": { "lambda": [ { "functionName": "alexaNewSkill-test", "alexaUsage": [ "custom/default" ], "codeUri": "lambda/custom", "runtime": "python3.6", "handler": "hello_world.handler" } ] } } } }