Fix CI: Exclude isar DB from sync, fix web git checkout
This commit is contained in:
parent
8c8b873cf4
commit
a26fcc4cfa
1 changed files with 10 additions and 1 deletions
|
|
@ -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: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue