mirror of
https://github.com/SamKirkland/FTP-Deploy-Action.git
synced 2025-08-15 06:25:05 +00:00
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:
parent
2d118d9190
commit
677465dfa0
@ -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/**/*
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user