Skip to content

Commit 9b2f52c

Browse files
Fix formatting in deploy workflow and improve exclusion patterns for FTP deployment
1 parent 7277115 commit 9b2f52c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
php-version: '8.2'
2020
tools: 'composer'
21-
21+
2222
- name: Composer install
2323
run: composer install
2424

@@ -38,4 +38,8 @@ jobs:
3838
password: ${{ secrets.PASSWORD }}
3939
protocol: ftp
4040
port: 21,
41-
exclude: '.git,.github,node_modules,vendor',
41+
exclude: |
42+
**/.git*
43+
**/.git*/**
44+
**/node_modules/**
45+
**/vendor/**

0 commit comments

Comments
 (0)