From af39f51204a5b46d738cd5782ab31e4109eef533 Mon Sep 17 00:00:00 2001 From: Shawn Hsu Date: Wed, 3 Apr 2024 10:49:17 +0800 Subject: [PATCH] fix: increase git post buffer size (#80) --- providers/github.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/providers/github.sh b/providers/github.sh index 04775f9f..6f2cc1eb 100755 --- a/providers/github.sh +++ b/providers/github.sh @@ -27,6 +27,7 @@ echo "Deploying to ${REPOSITORY} on branch ${BRANCH}" echo "Deploying to ${REMOTE_REPO}" git config --global init.defaultBranch main && \ + git config --global http.postBuffer 524288000 && \ git init && \ git config user.name "${ACTOR}" && \ git config user.email "${ACTOR}@users.noreply.github.com" && \