1 parent efd467b commit 1cb4d84Copy full SHA for 1cb4d84
1 file changed
.github/workflows/deploy-php.yml
@@ -49,9 +49,15 @@ jobs:
49
REMOTE_PORT: ${{ secrets.SSH_PORT }}
50
TARGET: "/home/cerberus/public_html/theplayground"
51
SOURCE: "build/"
52
- ARGS: "--dry-run --delete --verbose --filter='P .well-known/' --filter='P cgi-bin/' --filter='P .ftpquota' --filter='P .htaccess'"
+ ARGS: "--dry-run --delete --verbose --filter='.ssh-deploy-filter'"
53
EXCLUDE: |
54
.well-known
55
cgi-bin
56
.ftpquota
57
.htaccess
58
+ SCRIPT_BEFORE: |
59
+ echo "P .well-known/" > .ssh-deploy-filter
60
+ echo "P cgi-bin/" >> .ssh-deploy-filter
61
+ echo "P .ftpquota" >> .ssh-deploy-filter
62
+ echo "P .htaccess" >> .ssh-deploy-filter
63
+
0 commit comments