有人能帮我缩进这个.yml
文件吗?每次我设置它,我得到一个错误:
Unable to parse YAMLmapping values are not allowed here in 'string', line 1, column 17: version: 2.1orbs: heroku: circleci/heroku@0.0.1 ... ^
version: 2.1
orbs:
heroku:
circleci/heroku@0.0.10
workflows:
heroku_deploy:
jobs: - heroku/deploy-via-git
谢谢
可能是工作中的元素必须在新行上并缩进?
version: 2.1
orbs:
heroku:
circleci/heroku@0.0.10
workflows:
heroku_deploy:
jobs:
- heroku/deploy-via-git
我认为你的行尾没有被正确识别。第1行,第17列对应于这一行的末尾,您认为它是两行:
version: 2.1orbs:
确保您的文件被编码为UTF-8并使用Unix行结束符,然后再试一次。