AWS: 压缩 Lambda 应用程序

huangapple go评论64阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2023年7月17日 22:13:32
  • 转载请务必保留本文链接:https://go.coder-hub.com/76705337.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定