代码之家  ›  专栏  ›  技术社区  ›  pirmax

Bitbucket到FTP,带有管道和git FTP

  •  1
  • pirmax  · 技术社区  · 7 年前

    我使用 比特桶 免费存储库。 我想上传文件时,我推上主分支。 在主服务器上推送文件时出错:

    正在上载。。。 致命:无法上载文件。,正在退出。。。

    我的管道配置为:

    image: node:8.9.1
    
    pipelines:
      default:
        - step:
            caches:
              - node
            script: # Modify the commands below to build your repository.
              # - npm install
              - apt-get update
              - apt-get -qq install git-ftp
              - git config git-ftp.user $SFTP_USERNAME
              - git config git-ftp.password $SFTP_PASSWORD
              - git config git-ftp.url sftp://$SFTP_HOST:22/$SFTP_FOLDER
              - git ftp init
    

    我的变量定义在 .

    我确信变量中添加的标识符。这是SFTP的次要问题吗?我需要向服务器添加配置行吗?

    1 回复  |  直到 7 年前
        1
  •  2
  •   bilalararou    6 年前

    试试这个:

    image: samueldebruyn/debian-git
    
    pipelines:
      default:
        - step:
            script:
              - apt-get update
              - apt-get -qq install git-ftp
              - git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD sftp://$SFTP_HOST:22/$SFTP_FOLDER