将 Powershell 脚本直接包含到appspec.yml
文件中是否可以接受?
version: 0.0
os: windows
files:
- source: ./MyWebsiteFiles
destination: /MyWebsite
hooks:
AfterInstall:
- location: /Scripts/MyScript.ps1
timeout: 300
我正在运行一个ps1
通过 EC2 实例上的 Powershell 控制台立即执行的文件,但我的部署在执行 Powershell 脚本时卡住或失败。
appspec.yml
根据我在 CodeDeploy 文档中看到的内容,似乎没有可以包含在文件中的可接受文件类型的列表。
谢谢你的帮助。