Continuous integration Bitbucket管道错误-致命:无法上载文件,正在退出

Continuous integration Bitbucket管道错误-致命:无法上载文件,正在退出,continuous-integration,bitbucket,continuous-deployment,bitbucket-pipelines,bitbucket-cloud,Continuous Integration,Bitbucket,Continuous Deployment,Bitbucket Pipelines,Bitbucket Cloud,上载dist文件夹时,通过FTP进行的部署不断中断 这是我的bitbucket-pipelines.yml - step: name: 'Deployment to Production' size: 2x deployment: production trigger: 'manual' script: - apt-get update - apt-get -qq install git-ftp - git ftp in

上载dist文件夹时,通过FTP进行的部署不断中断

这是我的bitbucket-pipelines.yml

- step:
    name: 'Deployment to Production'
    size: 2x
    deployment: production
    trigger: 'manual'
    script:
      - apt-get update
      - apt-get -qq install git-ftp
      - git ftp init --auto-init --insecure --user $FTP_USER--passwd $FTP_PASS ftpes://ftp.domain.dev/public_html/wp-content/themes/test --all
在我的.git ftp include中,我已排除了dist文件夹

!dist/
但是每当它上传dist文件夹时,我总是收到这个错误

[108 of 109] Buffered for upload 'yarn.lock'.
[109 of 109] Buffered for upload 'dist/'.
Uploading ...
fatal: Could not upload files., exiting...
是因为尺寸吗?我已将.YML文件的大小增加了一倍。我不知道我错过了什么