英文:
AWS: zip lambda application
问题
我正在开发 AWS Lambda(NET6)。
在 Github 操作执行过程中(构建、压缩、上传),我收到了以下错误:
运行命令:zip -jr customerlambda-356e9e4b8869b2cf7f483d739aa5a8aa34e0fc13.zip -i ./bin/Release/net6.0/publish/*
zip 错误:无效的命令参数(没有可选项)
错误:进程以退出代码 16 完成。
这是在 Ubuntu-latest 环境中发生的。这里有什么不正确的地方?
英文:
I am developing AWS Lambda (NET6).
During the Github action execution (build, zip, upload) I have received the error:
Run zip -jr customerlambda-356e9e4b8869b2cf7f483d739aa5a8aa34e0fc13.zip -i ./bin/Release/net6.0/publish/*
zip error: Invalid command arguments (nothing to select from)
Error: Process completed with exit code 16.
It is in Ubuntu-latest environment.
What is incorrect here?
答案1
得分: 1
如果您的意思是压缩文件./bin/Release/net6.0/publish/*
,那么请去掉-i
。使用-i
是为了从已经指定的文件和目录中排除不符合以下模式的文件。
英文:
If you mean to zip the files ./bin/Release/net6.0/publish/*
, then get rid of the -i
. The use of -i
is to exclude files that don't match the following pattern from the files and directories already specified.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论