From 3cd24e922ac476c663bfad8235f1e9e54663ffc1 Mon Sep 17 00:00:00 2001 From: Surjith S M Date: Fri, 31 Jul 2020 14:21:36 +0530 Subject: [PATCH] Make sure to mention Path in the first example It was hard for me to understand how path works with this action. And it took me more than hour to figure it out. So make sure its mentioned in the first example, so its easier to scan and understand. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c70fde..309db4b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ jobs: - name: FTP-Deploy-Action uses: SamKirkland/FTP-Deploy-Action@3.1.1 with: - ftp-server: ftp://ftp.samkirkland.com/ + ftp-server: ftp://ftp.samkirkland.com/path/to/folder/ ftp-username: myFtpUserName ftp-password: ${{ secrets.FTP_PASSWORD }} ```