This commit is contained in:
Dmitry 2025-12-03 05:29:02 +03:00
parent 2eb2d97776
commit bcfec5841e

View file

@ -301,6 +301,14 @@ jobs:
# Set Node.js memory limits for increased container memory (512MB) # Set Node.js memory limits for increased container memory (512MB)
echo "NODE_OPTIONS=--max-old-space-size=512" >> $GITHUB_ENV || echo "NODE_OPTIONS=--max-old-space-size=512" >> ~/.bashrc || true echo "NODE_OPTIONS=--max-old-space-size=512" >> $GITHUB_ENV || echo "NODE_OPTIONS=--max-old-space-size=512" >> ~/.bashrc || true
- name: Configure Git
run: |
git config --global http.postBuffer 524288000
git config --global http.maxRequestBuffer 500M
git config --global core.compression 0
git config --global http.lowSpeedLimit 1000
git config --global http.lowSpeedTime 60
- name: Setup SSH - name: Setup SSH
run: | run: |
mkdir -p ~/.ssh mkdir -p ~/.ssh
@ -311,7 +319,7 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 1
lfs: false lfs: false
- name: Bump Version (Pre-hook) - name: Bump Version (Pre-hook)
@ -325,12 +333,6 @@ jobs:
git push git push
echo "✅ Version bump pushed" echo "✅ Version bump pushed"
- name: Configure Git
run: |
git config --global http.postBuffer 52428800
git config --global http.maxRequestBuffer 100M
git config --global core.compression 0
- name: Build Web App - name: Build Web App
working-directory: mnemo_cards_web_v2 working-directory: mnemo_cards_web_v2
env: env: