Uses git-ftp and GitHub actions to deploy a GitHub repository to a FTP server.
name: Deploy via git-ftp
on: push
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: git-ftp push
uses: sebastianpopp/git-ftp-action@releases/v2
with:
url: "ftp://ftp.example.com/path/"
user: ${{ secrets.FTP_USER }}
password: ${{ secrets.FTP_PWD }}
Input parameter | Description | Required | Default |
---|---|---|---|
url | git-ftp url (see documentation for more info) | 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 | . |