circleci config.yml: 'Invalid template path template.yml'

circleci config.yml: 'Invalid template path template.yml'

我正在做一个 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

当我运行上面的作业时,它returnsInvalid template path template.yml

我实际上拼错了在 GitHub 存储库中找到的模板的名称。我改正后一切正常。 但我认为这个错误根本不是明确的,我期待的是 'template not found in the path specified',而不是 'Invalid template path template.yml'