Automate copying your files via FTP using this GitHub action.
Find a file
2021-01-31 09:07:10 -08:00
action.yml pass through additional mirror options 2021-01-31 09:07:10 -08:00
Dockerfile use latest alpine image 2020-03-16 10:01:41 +01:00
entrypoint.sh pass through additional mirror options 2021-01-31 09:07:10 -08:00
LICENSE update readme and license 2020-03-16 10:45:32 +01:00
README.md pass through additional mirror options 2021-01-31 09:07:10 -08:00

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: hsimah/ftp-action-delete-first@releases/v2
      with:
        host: ${{ secrets.FTP_SERVER }}
        user: ${{ secrets.FTP_USERNAME }}
        password: ${{ secrets.FTP_PASSWORD }}
        localDir: "dist"
        remoteDir: "www"
        options: "--delete --asci"

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
options Mirror command options No ''