Fix CI: Exclude isar DB from sync, fix web git checkout

This commit is contained in:
Dmitry 2025-11-19 21:53:00 +03:00
parent 8c8b873cf4
commit a26fcc4cfa

View file

@ -34,7 +34,7 @@ jobs:
${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:~/
# Sync backend project
rsync -avz --delete --exclude '.*' --exclude 'build' --exclude 'server.exe' \
rsync -avz --delete --exclude '.*' --exclude 'build' --exclude 'server.exe' --exclude 'isar' \
mnemo_cards_backend \
${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:~/
@ -54,6 +54,15 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for all tags and branches
lfs: false
- name: Configure Git
run: |
git config --global http.postBuffer 524288000
git config --global http.maxRequestBuffer 100M
git config --global core.compression 0
- name: Install Dependencies
run: |