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.
This commit is contained in:
adripo 2020-11-29 00:27:23 +01:00 committed by GitHub
parent 2d118d9190
commit 677465dfa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,9 +168,10 @@ jobs:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName
password: ${{ secrets.password }} password: ${{ secrets.password }}
exclude: .git* exclude:
- .git*
- .git*/** - .git*/**
- **/.git*/** - '**/.git*/**'
- node_modules/** - node_modules/**
- node_modules/**/* - node_modules/**/*
``` ```