使用管道和 git-ftp 到 FTP 的 Bitbucket

Bitbucket to FTP with pipeline and git-ftp

我使用 Bitbucket 免费存储库。 我想在推送 master 分支时上传文件。 我在 master 上推送文件时出错:

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

我的管道配置是:

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

我的变量在 Bitbucket.

中定义

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

试试这个:

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