YAML:第 4 行第 5 列的上下文中不允许映射值
YAML: Mapping values are not allowed in this context at line 4 column 5
这会引发错误,任何 yaml 专家都能看出原因吗?
我所有的空格和缩进似乎都是正确的:
trigger:
- develop
pool:
vmImage: ubuntu-latest
steps:
- checkout: self
submodules: true
- task: AzureStaticWebApp@0
inputs:
app_location: "/"
api_location: "api"
output_location: ""
env:
azure_static_web_apps_api_token: $(deployment_token)
大部分行的末尾都有 unicode 字符 U+200B (zero width space)。删除这些字符,YAML 不会将它们识别为分隔空格,这就是解析失败的原因。
这会引发错误,任何 yaml 专家都能看出原因吗?
我所有的空格和缩进似乎都是正确的:
trigger:
- develop
pool:
vmImage: ubuntu-latest
steps:
- checkout: self
submodules: true
- task: AzureStaticWebApp@0
inputs:
app_location: "/"
api_location: "api"
output_location: ""
env:
azure_static_web_apps_api_token: $(deployment_token)
大部分行的末尾都有 unicode 字符 U+200B (zero width space)。删除这些字符,YAML 不会将它们识别为分隔空格,这就是解析失败的原因。