Automate copying your files via FTP using this GitHub action.
Go to file
Tim Bernhard 2a1885275e Auto-confirm sftp ssh keys 2020-04-14 11:31:49 +02:00
Dockerfile Fix issue where the local dir was copied too 2020-04-12 21:04:18 +02:00
LICENSE update readme and license 2020-03-16 10:45:32 +01:00
README.md update readme and license 2020-03-16 10:45:32 +01:00
action.yml Default values should be a string 2020-03-09 20:07:47 +01:00
entrypoint.sh Auto-confirm sftp ssh keys 2020-04-14 11:31:49 +02:00

README.md

ftp-action

Automate copying your files via ftp using this GitHub action.

Example usage

name: Deploy via ftp
on: push
jobs:
  deploy:
    name: Deploy
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Upload ftp
      uses: sebastianpopp/ftp-action@releases/v2
      with:
        host: ${{ secrets.FTP_SERVER }}
        user: ${{ secrets.FTP_USERNAME }}
        password: ${{ secrets.FTP_PASSWORD }}
        localDir: "dist"
        remoteDir: "www"

Input parameters

Input parameter Description Required Default
host FTP server name Yes N/A
user FTP username Yes N/A
password FTP password Yes N/A
localDir The local directory to copy No .
remoteDir The remote directory to copy to No .
forceSsl Force SSL encryption No false