From 4cd0cd03d027e257163565704b24ca6dd594cd9d Mon Sep 17 00:00:00 2001 From: Sebastian Popp Date: Thu, 5 Sep 2019 10:56:26 +0200 Subject: [PATCH] add readme --- README.md | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dca0e8b..5d7082a 100644 --- a/README.md +++ b/README.md @@ -1 +1,34 @@ -# ftp-action \ No newline at end of file +# 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: "ftp.example.com" + 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 | .