From 1274da27ea43022f6f715efe3bb2472622a3772b Mon Sep 17 00:00:00 2001 From: yatinappsmith <84702014+yatinappsmith@users.noreply.github.com> Date: Tue, 26 Nov 2024 16:33:12 +0530 Subject: [PATCH] ci : fix git lfs migrate (#37716) ## Description fix git lfs migrate Fixes #`Issue Number` _or_ Fixes `Issue URL` ## Automation /ok-to-test tags="" ### :mag: Cypress test results ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No --- .github/workflows/client-build.yml | 2 +- .github/workflows/server-build.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/client-build.yml b/.github/workflows/client-build.yml index c88d0afb6143..5eddfa82e64e 100644 --- a/.github/workflows/client-build.yml +++ b/.github/workflows/client-build.yml @@ -206,7 +206,7 @@ jobs: git config --global user.name "$gituser" git clone https://$cachetoken@github.com/appsmithorg/cibuildcache.git git lfs install - git lfs migrate import --everything + git lfs migrate import --everything --yes if [ "$reponame" = "appsmith" ]; then export repodir="CE"; fi if [ "$reponame" = "appsmith-ee" ]; then export repodir="EE"; fi cd cibuildcache/$repodir/release/client diff --git a/.github/workflows/server-build.yml b/.github/workflows/server-build.yml index 51ef45593699..fcbb47722abb 100644 --- a/.github/workflows/server-build.yml +++ b/.github/workflows/server-build.yml @@ -338,7 +338,7 @@ jobs: git config --global user.name "$gituser" git clone https://$cachetoken@github.com/appsmithorg/cibuildcache.git git lfs install - git lfs migrate import --everything + git lfs migrate import --everything --yes if [ "$reponame" = "appsmith" ]; then export repodir="CE"; fi if [ "$reponame" = "appsmith-ee" ]; then export repodir="EE"; fi cd cibuildcache/$repodir/release/server