Dpl: Add deployment option for FTP

Created on 11 Apr 2017  路  3Comments  路  Source: travis-ci/dpl

Currently, the recommended methods for deploying to an FTP server from Travis CI is either to write a custom shell script or run a curl command in the 'after_success' section.

It'd be nice to have FTP supported as a deployment option. A minimal configuration for .travis.yml could resemble the following.

deploy:
  provider: ftp
  host: ftp://sitename.com/directory/myfile
  user: "FTP USERNAME"
  password: "FTP PASSWORD"
  skip_cleanup: true
  on:
    branch: master
stale

All 3 comments

Thanks for contributing to this issue. As it has been 90 days since the last activity, we are automatically closing the issue. This is often because the request was already solved in some way and it just wasn't updated or it's no longer applicable. If that's not the case, please do feel free to either reopen this issue or open a new one. We'll gladly take a look again! You can read more here: https://blog.travis-ci.com/2018-03-09-closing-old-issues

I don't think this issue should be closed. How can I re-open it?

I am also in agreement @svenfuchs might know how to re-open?

Was this page helpful?
0 / 5 - 0 ratings