我正在从事一个 CI/CD 项目(使用 circleci 管道),目前,我坚持让我的“create_infrastructure”工作正常工作。下面是作业
# AWS infrastructure
create_infrastructure:
docker:
- image: amazon/aws-cli
steps:
- checkout
- run:
name: Ensure backend infrastructure exist
command: |
aws cloudformation deploy \
--template-file template.yml \
--stack-name my-stack
当我运行上面的作业时,它会返回Invalid template path template.yml
- 我想把
template.yml
文件放在哪里? config.yml
我把它和项目的 GitHub 存储库放在了相同的位置(是这样吗?)- 难道
--template-file template.yml
我的工作就行了这个问题?(我是这里的初学者)。请我需要帮助。