From a26fcc4cfaf8d847b986ed9536f77ea65c04e437 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Wed, 19 Nov 2025 21:53:00 +0300 Subject: [PATCH] Fix CI: Exclude isar DB from sync, fix web git checkout --- .forgejo/workflows/deploy.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 8fe161b..9aaef3a 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -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: |