Bitbucket管道缓存一些文件,但它没有上传

时间:2017-10-25 11:49:21

标签: bitbucket bitbucket-pipelines

所以我在bitbucket上设置了一个管道来推送到我的演示服务器

image: php:7.1.1

pipelines:
  default:
    - step:
        caches:
        - composer
        script:
           - echo "Pipeline Init"
           - apt-get update
           - apt-get -qq install git-ftp
           - echo "Initiating Push site:Source."
           - git config git-ftp.syncroot wordpress/wp-content/themes/ip-callcenters/
           - git ftp init --user $FTP_USER --passwd $FTP_PASSWORD ftp://myip/ipcc/wp-content/themes/myfolder/

到目前为止一切正常......

告诉我There are 143 files to sync:

并启动[1 of 143] Buffered for upload等等......

因此,出于某种原因,在缓冲26-30个文件之后停止缓冲它不会继续,然后说上传....几分钟后我得到了

fatal error: Could not upload files., exiting...

任何想法我怎样才能使这个工作?

1 个答案:

答案 0 :(得分:-1)

- git ftp push --user $FTP_USER --passwd $FTP_PASSW ftp://myip/ipcc/wp-content/themes/myfolder/

在同步存储库时使用"ftp push"
以及第一次将存储库克隆到FTP时的"ftp init"