oeph / ftp-action

Automate copying your files via FTP using this GitHub action.

Home Page:https://github.com/marketplace/actions/ftp-action

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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
deleteFiles Delete files via --delete No false

About

Automate copying your files via FTP using this GitHub action.

https://github.com/marketplace/actions/ftp-action

License:MIT License


Languages

Language:Shell 65.5%Language:Dockerfile 34.5%