1

有没有办法使用 bitbucket 管道将 git 子模块上传到 ftp 服务器?我可以将主 repo 上传到 ftp 服务器,但不是子模块。

我使用的代码如下:

# This is a sample build configuration for Other.
# Check our guides at https://confluence.atlassian.com/x/5Q4SMw for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
# image: atlassian/default-image:latest

pipelines:
  default:
    - step:
        script:
          - apt-get update
          - apt-get -qq install git-ftp
          - git submodule update --init --recursive
          - git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD $FTP_SERVER
4

0 回答 0