Skip to content

Commit

Permalink
Fix formatting in deploy workflow and improve exclusion patterns for …
Browse files Browse the repository at this point in the history
…FTP deployment
  • Loading branch information
abdessamadbettal committed Dec 6, 2024
1 parent 7277115 commit 9b2f52c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
php-version: '8.2'
tools: 'composer'

- name: Composer install
run: composer install

Expand All @@ -38,4 +38,8 @@ jobs:
password: ${{ secrets.PASSWORD }}
protocol: ftp
port: 21,
exclude: '.git,.github,node_modules,vendor',
exclude: |
**/.git*
**/.git*/**
**/node_modules/**
**/vendor/**

0 comments on commit 9b2f52c

Please sign in to comment.