Skip to content

Commit 393d668

Browse files
authored
Merge pull request #2 from ASRG/claude/intelligent-leakey
Fix deploy workflow exclude parameters
2 parents 7ddfa98 + 585b9d2 commit 393d668

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,10 @@ jobs:
1414
- name: Deploy via rsync over SSH
1515
uses: burnett01/rsync-deployments@7.0.1
1616
with:
17-
switches: -avz --delete
17+
switches: -avz --delete --exclude='.git/' --exclude='.github/' --exclude='.claude/' --exclude='.gitignore' --exclude='*.md' --exclude='debug.html'
1818
path: ./
1919
remote_path: ${{ secrets.SITEGROUND_REMOTE_PATH }}
2020
remote_host: ${{ secrets.SITEGROUND_HOST }}
2121
remote_port: ${{ secrets.SITEGROUND_PORT }}
2222
remote_user: ${{ secrets.SITEGROUND_USER }}
2323
remote_key: ${{ secrets.SITEGROUND_SSH_KEY }}
24-
exclude: |
25-
.git/
26-
.github/
27-
.claude/
28-
.gitignore
29-
*.md
30-
debug.html

0 commit comments

Comments
 (0)