joutvhu/FTP Transfer
GitHub Action to transfer files to and from a computer running an FTP server service.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stalelast commit Jul 28, 2023
- License
- MIT
- Runtime
- Deprecated runtime
Pinned Snippet
uses: joutvhu/ftp-transfer@50bd98a47d757eb61bdaa3ba18c17484fbc98c27 # v1.0.0tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| host | The hostname or IP address of the FTP server. | yes | — |
| port | The port of the FTP server. | no | 21 |
| username | Username for authentication. | no | anonymous |
| password | Password for authentication. | no | anonymous@ |
| connTimeout | How long (in milliseconds) to wait for the control connection to be established. | no | 10000 |
| pasvTimeout | How long (in milliseconds) to wait for a PASV data connection to be established. | no | 10000 |
| keepalive | How often (in milliseconds) to send a "dummy" (NOOP) command to keep the connection alive. | no | 10000 |
| commands | The ftp commands | yes | — |
| debug | Show ouputs | no | — |
| throwing | Fail when command execution failed | no | — |
Outputs
| name | description |
|---|---|
| succeed | Number of commands executed successfully. |
| message | Error messsage. |