curl 命令在 bitbucket CI/CD 管道 YAML 中导致缩进错误

curl command causing indentation error in bitbucket CI/CD pipeline YAML

当我部署到生产环境时,我正在尝试向我在 bitbucket 上的 CI/CD YAML 添加一个 curl 命令。 curl 命令向 CloudFlare API 发送 POST 请求以清除缓存。该命令包括 -H 必要的 HTTP headers 变量。这会导致 bitbucket 出现缩进错误,因此我无法提交我的更改,我也不确定为什么。我不熟悉 YAML 语法以及我应该如何解决这个问题。

bitbucket-pipelines.YAML

image: python:3.7.4

clone:
 depth: full

pipelines:
   default:
     - step:
        caches:
          - pip
        script:
          - echo "nothing"
   branches:
      prod:
      - step:
          name: Deploy to Staging
          deployment: staging
          script: #staging script
           - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_STAGING_APP_NAME.git HEAD:master --force
      - step:
          name: Deploy to Production
          deployment: production
          trigger: manual
          script: #production script
           - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git HEAD:master --force
           - "curl -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE\purge_cache" -H "X-Auth-Email: $CLOUDFLARE_AUTH_EMAIL" \
          -H "X-Auth-Key: $CLOUDFLARE_AUTH_KEY" \
          -H "Content-Type: application/json" --data '{"purge_everything":true}'"

您需要对命令中的双引号进行转义。此外,-H 续行缩进得不够远——它们必须比标量开始处的列表项指示器缩进更多。

更好的方法是使用折叠块标量:

        - >-
          curl -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE\purge_cache"
          -H "X-Auth-Email: $CLOUDFLARE_AUTH_EMAIL"
          -H "X-Auth-Key: $CLOUDFLARE_AUTH_KEY"
          -H "Content-Type: application/json" --data '{"purge_everything":true}'

折叠块标量将换行符折叠成空格并且不处理任何特殊字符,因此您不需要转义任何内容(事实上,块标量中没有转义序列)。