-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83bf24a
commit 4cd0cd0
Showing
1 changed file
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,34 @@ | ||
# ftp-action | ||
# 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 | . |