Skip to content

Automate copying your files via FTP using this GitHub action.

License

Notifications You must be signed in to change notification settings

thijsniks/ftp-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ftp-action

Automate copying your files via FTP using this GitHub action.

Example usage

name: Upload via FTP
on: push
jobs:
  FTP-Action:
    name: FTP-Action
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: Deploy FTP
      uses: sebastianpopp/ftp-action@master
      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 .

About

Automate copying your files via FTP using this GitHub action.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 61.9%
  • Shell 38.1%