Skip to content

Uses git-ftp and GitHub actions to deploy a GitHub repository to a FTP server.

License

Notifications You must be signed in to change notification settings

alex-one-v/git-ftp-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

git-ftp-action

Uses git-ftp and GitHub actions to deploy a GitHub repository to a FTP server.

⚠️ Attention: This action works only with actions/checkout@v1 for now. Make sure you use v1 and not v2 or master.

Example usage

name: Deploy via git-ftp
on: push
jobs:
  deploy:
    name: Deploy
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: git-ftp push
      uses: sebastianpopp/git-ftp-action@releases/v3
      with:
        url: "ftp://ftp.example.com/path/"
        user: ${{ secrets.FTP_USER }}
        password: ${{ secrets.FTP_PWD }}

Input parameters

Input parameter Description Required Default
url git-ftp url (see documentation) Yes N/A
user FTP username Yes N/A
password FTP password Yes N/A
syncroot Specifies a local directory to sync from as if it were the git project root path. No .
options Additional options (see documentation) No --auto-init

About

Uses git-ftp and GitHub actions to deploy a GitHub repository to a FTP server.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 64.7%
  • Shell 35.3%