Bitbucket 管道缓冲一些文件,但不上传

问题描述 投票:0回答:1

所以我在我的 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...

知道我怎样才能让它工作吗?

bitbucket bitbucket-pipelines
1个回答
-1
投票
- git ftp push --user $FTP_USER --passwd $FTP_PASSW ftp://myip/ipcc/wp-content/themes/myfolder/

同步存储库时使用

"ftp push"

以及
"ftp init"
当您第一次将存储库克隆到 FTP 时。

© www.soinside.com 2019 - 2024. All rights reserved.