From 677465dfa0b8105e4ae947c9d1920f2702c9d92e Mon Sep 17 00:00:00 2001 From: adripo <26493496+adripo@users.noreply.github.com> Date: Sun, 29 Nov 2020 00:27:23 +0100 Subject: [PATCH] Fixed exclude list format fix #126 #129 All list elements must be written one per line starting with a minus+space. Also elements starting with * or other special characters must be surrounded by quotes. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9ae13c..18952de 100644 --- a/README.md +++ b/README.md @@ -168,9 +168,10 @@ jobs: server: ftp.samkirkland.com username: myFtpUserName password: ${{ secrets.password }} - exclude: .git* + exclude: + - .git* - .git*/** - - **/.git*/** + - '**/.git*/**' - node_modules/** - node_modules/**/* ```