diff --git a/README.md b/README.md index 50c4a78..635f8a8 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ jobs: host: ${{ secrets.FTP_SERVER }} user: ${{ secrets.FTP_USERNAME }} password: ${{ secrets.FTP_PASSWORD }} + port: ${{ secrets.FTP_PORT }} localDir: "dist" remoteDir: "www" options: "--delete --asci" @@ -26,12 +27,13 @@ jobs: ## 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 -options | Mirror command options | No | '' +| Input parameter | Description | Required | Default | +| --------------- | ------------------------------- | -------- | ------- | +| host | FTP server name | Yes | N/A | +| user | FTP username | Yes | N/A | +| password | FTP password | Yes | N/A | +| port | FTP port | No | 21 | +| localDir | The local directory to copy | No | . | +| remoteDir | The remote directory to copy to | No | . | +| forceSsl | Force SSL encryption | No | false | +| options | Mirror command options | No | '' |